Advertisement
sanjiisan

Untitled

May 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. var tmp = [1, 2, 4];
  2.  
  3. zxc = tmp.map(
  4. function (item) {
  5. return item * 2;
  6. }
  7. );
  8.  
  9. console.log(tmp);
  10. console.log(zxc);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement