Contains Javascript, CoffeeScript, Pug,
A-Hierarchy-Of-Folders |
|
1 |  // This Javascript Objects is actually one level down the tree.  |
CoffeeScript |
|
2 |  cubes =  (math.cube num for num in list) |
3 | |
Javascript |
|
4 | function getRows (){ |
5 |     var rows = prompt("How many rows for your multiplication table?"); |
6 | |
7 |     if(rows == "" || rows == null) { |
8 |      rows = 10; |
9 |     } |
10 |     return rows; |
11 | } |
12 | |
Pug |
|
13 | html |
14 |   head |
15 |     title Hello World |
16 |   body |
17 |     h1 Hello World  |
18 |