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

6 lines
128 B
CoffeeScript
Raw Normal View History

class Person
2015-08-29 17:18:44 +00:00
constructor: (options) ->
{@name, @age, @height = 'average'} = options
2015-08-29 17:18:44 +00:00
tim = new Person name: 'Tim', age: 4