Published inThe Startup·Jun 2, 2020Member-onlyJavaScript Functions — Part 1The first time that I encountered functions in JavaScript, I was confused because coming from a background in Java which had methods that were always attached to classes (objects); seeing JavaScript functions that could exist on their own without being attached to objects took some getting used to. …JavaScript6 min readJavaScript6 min read
Mar 11, 2019Member-onlyVAR, LET and CONST -Hoisting, and ScopeJavaScript, like a lot of more modern languages, provides a host of different methods for variable declaration. JavaScript has the var, let and const keywords for variable declarations and with each comes a different use case. …JavaScript5 min readJavaScript5 min read