Skip to content

Instantly share code, notes, and snippets.

@wmarbut
Created May 8, 2013 20:26
Show Gist options
  • Save wmarbut/5543382 to your computer and use it in GitHub Desktop.
Save wmarbut/5543382 to your computer and use it in GitHub Desktop.
console.log('Without do')
for i in [1..10]
if !n?
n = 5
n = n * 5
console.log(n)
console.log('With do')
for i in [1..10]
do ->
if !r?
r = 5
r = r *5
console.log(r)
### OUTPUTS
Without do
25
125
625
3125
15625
78125
390625
1953125
9765625
48828125
With do
25
25
25
25
25
25
25
25
25
25
####
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment