Tag: javascript tips

  • Function Declarations VS Function Expressions in JavaScript

    JavaScript provides 2 methods for defining a function: the function declaration and the function expression. In this video we examine the difference, which includes hoisting and the emphasis on first class functions. We also take a look at when you might want to use a named function expression as opposed to an anonymous function expression.…

  • Javascript Closures Tutorial – What makes Javascript Weird…and Awesome Pt 3

    What is a closure? In this Javascript Tutorial, we’re going to be learning about closures – our 3rd most misunderstood concept of Javascript. Watch the full playlist: Hopefully, we’re going to break it down enough to make it simple to understand for newbies and intermediate coders alike. Javascript closures are really not that complex of…