Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Last active August 29, 2015 14:14
Show Gist options
  • Save KamilLelonek/fbe1554c858d574b677c to your computer and use it in GitHub Desktop.
Save KamilLelonek/fbe1554c858d574b677c to your computer and use it in GitHub Desktop.
Creating objects in CoffeeScript - part1[code]
class OrderForm
constructor: (type, frequencyNumber, frequencyPeriod, name, mail, company, cvr, phone, address, products, message) ->
@type = type
@frequencyNumber = frequencyNumber
@frequencyPeriod = frequencyPeriod
@name = name
@mail = mail
@company = company
@cvr = cvr
@phone = phone
@address = address
@products = products
@message = message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment