Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pass By Reference

Does ForEach() Bind By Reference?

var arr = ['Foo']; arr.forEach(function(item){ console.log(item); item = 'Lorem… Read more Does ForEach() Bind By Reference?