Skip to content

Instantly share code, notes, and snippets.

@oscardelben
Created November 26, 2011 23:38
Show Gist options
  • Save oscardelben/1396518 to your computer and use it in GitHub Desktop.
Save oscardelben/1396518 to your computer and use it in GitHub Desktop.
Javascript, the bad parts
class User
setName: (name) ->
@name = name
class Programmer
user = new User
programmer = new Programmer
user.setName.apply programmer, ['Oscar']
console.log programmer.name # Oscar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment