jashkenas--coffeescript/documentation/examples/fat_arrow.coffee

7 lines
143 B
CoffeeScript

Account = (customer, cart) ->
@customer = customer
@cart = cart
$('.shopping_cart').on 'click', (event) =>
@customer.purchase @cart