Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Section 1:
  2. 1. ages.map(function (num) { return num * 2 }
  3. 2. ages.map(function (num) { return num * 2 }).filter(function (num) { if (num < 65) {return num}})
  4. 3. ages.map(function (num) { return 'Age is: ' + num})
  5.  
  6. Section 2:
  7. 1.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement