Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. const _ = require('lodash');
  2.  
  3. const list = new Array(1000000);
  4.  
  5. console.time('map');
  6. const list2 = _.map(list, (v, i) => {
  7. return i;
  8. });
  9. console.timeEnd('map');
Add Comment
Please, Sign In to add comment