Category: JavaScript

  • Rangle Up Variables with JavaScript Closures

    Using global variables in JavaScript is bad and can tick off other developers.  Use Closures to group your variables with proper scope and stop watching your back in JavaScript User Group meetings. Here’s what I mean: When you make a variable or function in JavaScript by default it’s defined on the global object and it…