Skip to content

Instantly share code, notes, and snippets.

@kylejlin
Last active January 8, 2017 00:50
Show Gist options
  • Save kylejlin/4c66b9a935ab10d4908d8f8c097ea344 to your computer and use it in GitHub Desktop.
Save kylejlin/4c66b9a935ab10d4908d8f8c097ea344 to your computer and use it in GitHub Desktop.
class Listy extends Array {
constructor() {
super(arguments);
}
customContains(item) {
return this.indexOf(item) > -1;
}
}
const list = new Listy('hello', 'world');
console.log(list, list.customContains('hello'), list.customContains('world'));
alert(list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment