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

6 lines
128 B
CoffeeScript

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