jashkenas--coffeescript/documentation/coffee/constructor_destructuring.c...

7 lines
105 B
CoffeeScript

class Person
constructor: (options) ->
{@name, @age, @height} = options
tim = new Person age: 4