Javascript for Web Designers

  • Javascript Loop

    Javascript Loop

    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…

  • 100 Days of Javascript

    100 Days of Javascript

    Starting today I’m taking on the challenge to re-learn javascript. The last ten years have led to countless updates, APIs and new frameworks that I’ve largely ignored in favor of focusing on HTML, CSS and enough PHP to get the job done in WordPress. Day One: Relearning the basics Javacript for Web Designers by Mat…