Tagged Questions

2
votes
4answers
598 views

How can one de-reference JavaScript variables when enclosing an outer scope

Ok, here's a problem script. var links = [ 'one', 'two', 'three' ]; for( var i = 0; i < links.length; i++ ) { var a = document.createElement( 'div' ); a.innerHTML = links[i]; …