Skip to content

Instantly share code, notes, and snippets.

@visb
Created December 31, 2014 21:12
Show Gist options
  • Select an option

  • Save visb/f352e0abb2db357d3a92 to your computer and use it in GitHub Desktop.

Select an option

Save visb/f352e0abb2db357d3a92 to your computer and use it in GitHub Desktop.
var Users = (function() {
Array.call(this)
this.push('first')
this.push('last')
this.forEach(function(item){
console.log(item)
})
})()
users.length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment