Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

123
Views
Filter Array - if the array exists in the array of objects

How Do I filter an array by checking if an array is listed in the array?

cryptoData: Array(100) 0: {CoinInfo: {…}, RAW: {…}, DISPLAY: {…}}

I am trying to check if cryptoData (Array) contains the DISPLAY array and if it does not contain DISPLAY - remove it from the cryptoData array and set the filterArray with only the elements that contain the DISPLAY Array.

My attempt:

var filterdArray = cryptoData.filter(function (el) {
  return cryptoData[el] === 'DISPLAY';
});

this.setState({
  cryptos: filterdArray,
  refreshing: false,
});
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

As the value is an object you can use hasOwnProperty to check if the object has a property.

var filterdArray = cryptoData.filter(function (el) {
  return el.hasOwnProperty('DISPLAY');
});

this.setState({
  cryptos: filterdArray,
  refreshing: false,
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!