Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to filter array in JavaScript ES6

3 Answers

0 votes
const arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; 

const result = arr.filter(n => n > 6); 

console.log(result); 

  
  
       
/*
run:
     
[ 7, 8, 9 ]
   
*/

 



answered Mar 25, 2020 by avibootz
0 votes
const arr = ['Node.js', 'JavaScript', 'C++', 'C', 'Python']; 

const result = arr.filter(s => s.length > 5);

console.log(result); 

  
  
       
/*
run:
     
[ 'Node.js', 'JavaScript', 'Python' ]
   
*/

 



answered Mar 25, 2020 by avibootz
0 votes
const arr =  [
    {
      id: 1234,
      mission: 'Read a book',
      completed: false
    },
    {
      id: 9872,
      mission: 'Watch a movie',
      completed: false
    },
    {
      id: 7389,
      mission: 'Write the code',
      completed: true
    },
    {
      id: 5621,
      mission: 'Play with kids',
      completed: true
    },
  ]

const result = arr.filter(user => user.id > 3333);

console.log(result); 

  
  
       
/*
run:
     
[
  { id: 9872, mission: 'Watch a movie', completed: false },
  { id: 7389, mission: 'Write the code', completed: true },
  { id: 5621, mission: 'Play with kids', completed: true }
]
   
*/

 



answered Mar 25, 2020 by avibootz

Related questions

1 answer 147 views
2 answers 264 views
2 answers 174 views
174 views asked Mar 25, 2020 by avibootz
1 answer 150 views
1 answer 127 views
1 answer 156 views
...