You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for i in [0..2]
setTimeout (-> console.log(i)), i * 500
i2 = JSON.parse(JSON.stringify(i)) # superdirty value copy
setTimeout (-> console.log(i2)), i2 * 500 + 250
Output:
3
2
3
2
3
2
^ in 250ms intervals - good, also correct order.
Expected:
0
0
1
1
2
2
^ in 250ms intervals.
The text was updated successfully, but these errors were encountered:
JanChec
changed the title
Generator output variables are overwritten
Anonymous functions bind to references
Dec 28, 2016
Code:
Output:
^ in 250ms intervals - good, also correct order.
Expected:
^ in 250ms intervals.
The text was updated successfully, but these errors were encountered: