Hoisting occurs when a variable or function declaration is put into memory during the compile phase and is conceptually moved to the top of its…
Read more
28
February
2018
3 mins
3 mins
Hoisting occurs when a variable or function declaration is put into memory during the compile phase and is conceptually moved to the top of its…
Read more6 mins
A function (object subtype) is a JavaScript procedure that consists of a set of statements to perform a task. There are two ways to define…
Read more2 mins
A JavaScript array is an object subtype that is used in the construction of arrays; which are high-level, list-like objects. You can create an array…
Read more3 mins
In JavaScript, most things are objects. You can use objects as containers to encapsulate related functions and variables into efficient packages. To create objects in…
Read more5 mins
JavaScript is a loosely typed or a dynamic language. That means you don’t have to declare the type of a variable ahead of time. The…
Read more