Skip to content

Instantly share code, notes, and snippets.

@ttepasse
Created November 17, 2012 21:14
Show Gist options
  • Save ttepasse/4100377 to your computer and use it in GitHub Desktop.
Save ttepasse/4100377 to your computer and use it in GitHub Desktop.
function MyArray () { console.log("bla"); }
MyArray.prototype = Object.create(Array.prototype)
var x = new MyArray()
x.push("lala")
x.push("lolo")
x.indexOf("lolo") // -> 1
x instanceof Array // -> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment