mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
number examples
This commit is contained in:
parent
2c90e8b002
commit
e3c667d49d
1 changed files with 8 additions and 3 deletions
|
@ -19,9 +19,7 @@ spaced_out_multiline_object: {
|
|||
|
||||
pi: 3.14159
|
||||
|
||||
a_googol: 1e100
|
||||
|
||||
list: [-1, 0, 1, 2, 3, 4]
|
||||
list: [1, 2, 3, 4]
|
||||
|
||||
regex: /match[ing](every|thing|\/)/gi
|
||||
|
||||
|
@ -139,3 +137,10 @@ Exclaimer: name => this.name: name. # Create the child obje
|
|||
Exclaimer.prototype: new Greeter() # Set the child to inherit from the parent.
|
||||
Exclaimer.prototype.hello: => super(this.name + "!"). # The child's "hello" calls the parent's via "super".
|
||||
(new Exclaimer('Bob')).hello() # Run it.
|
||||
|
||||
# Numbers.
|
||||
a_googol: 1e100
|
||||
|
||||
hex: 0xff0000
|
||||
|
||||
negative: -1.0
|
Loading…
Add table
Reference in a new issue