Y
Hacker News
new
|
ask
|
show
|
jobs
Don't get bitten by Javascript variable hoisting in loops
(
thecomputersarewinning.com
)
4 points
by
ithayer
5185 days ago
1 comments
Q_the_Novice
5185 days ago
JavaScript variables are passed by reference, the variable `i` on the statement: `var msg = txt[i];` will always reference the last value after the loop has executed.
link