Skip to content

Instantly share code, notes, and snippets.

@jasonkarns
Created January 26, 2014 19:59
Show Gist options
  • Save jasonkarns/8638434 to your computer and use it in GitHub Desktop.
Save jasonkarns/8638434 to your computer and use it in GitHub Desktop.
subclass array in CoffeeScript
class SubArray
@:: = new Array
constructor: (args...) ->
args.__proto__ = SubArray::
return args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment