Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (function() {
  2. function makeCar(color) {
  3. return {
  4. getColor() { return color; }, // Читает color
  5. paint(newColor) { color = newColor; }, // Изменяет color
  6. }
  7. };
  8. global.cars = ['red', 'green', 'blue'].map(makeCar);
  9. })();
Add Comment
Please, Sign In to add comment