Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.   Dado el array "people" que figura, itéralo e incluye en un nuevo array de nombre "admitted" aquellas personas que tengan una nota igual o superior a 5, y que tengan entre sus hobbies programar
  3. */
  4.  
  5. var people = [
  6.   {
  7.     name: 'John',
  8.     score: 5.2,
  9.     hobbies: 'sports'
  10.   },{
  11.     name: 'Mary',
  12.     score: 9,
  13.     hobbies: 'programming'
  14.   },{
  15.     name: 'Susan',
  16.     score: 2.9,
  17.     hobbies: 'gaming'
  18.   },{
  19.     name: 'Eric',
  20.     score: 5,
  21.     hobbies: 'nature'
  22.   },{
  23.     name: 'Linda',
  24.     score: 5,
  25.     hobbies: 'programming'
  26.   }
  27. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement