Skip to content

Instantly share code, notes, and snippets.

@zolotyh
Created August 21, 2023 07:28
Show Gist options
  • Save zolotyh/83b8efb5e23e1fb722d49770e5ffdab2 to your computer and use it in GitHub Desktop.
Save zolotyh/83b8efb5e23e1fb722d49770e5ffdab2 to your computer and use it in GitHub Desktop.
function Hamster() {}
Hamster.prototype.food = [];
Hamster.prototype.feed = function (item) {
this.food.push(item);
};
const speedy = new Hamster();
const lazy = new Hamster();
speedy.feed("яблоко");
speedy.feed("лимон");
console.log(speedy.food.length);
console.log(lazy.food.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment