Guest User

Untitled

a guest
May 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. (function() {
  2. function makeCar(color) {
  3. return {
  4. getColor() { return color; },
  5. }
  6. };
  7. global.cars = ['red', 'green', 'blue', 'yellow', 'pink'].map(makeCar);
  8. })();
Add Comment
Please, Sign In to add comment