Skip to content

Instantly share code, notes, and snippets.

@gvarela
Last active December 20, 2015 10:18
Show Gist options
  • Save gvarela/6114089 to your computer and use it in GitHub Desktop.
Save gvarela/6114089 to your computer and use it in GitHub Desktop.
class Table
constructor: (@rows, @columns)->
toHtml: ->
@el 'table', (@createRow() for row in [0...@rows]).join('')
createRow: ->
@el 'tr', (@createCell() for cell in [0...@columns]).join('')
createCell: ->
"<td></td>"
el: (el, content)->
"<#{el}>#{content}</#{el}>"
table = new Table(3,3).toHtml()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment