Last active
December 20, 2015 10:18
-
-
Save gvarela/6114089 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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