
Day Two – Loops Took a look at the for and for / in loops and how they’re used in variables and objects to pull information. var warGoodForObject = { “what”: “nothing”, “who”: “no one” }; for( var name in warGoodForObject ) { console.log ( name + “: ” + warGoodForObject[name] ); } Results in … Continue reading “Javascript Loop”