-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoisting.js
35 lines (25 loc) · 914 Bytes
/
hoisting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Hoisting
// Video link: https://youtu.be/9Ta1umc3tkQ?si=6vKcDEf2w159uWYw
// What
// - In Other programming languages you need to declare the variable first and then you need to initialize.
// Note
// - Function declaration are scanned and made available.
// - Variable declaration are scanned and made undefine.
// Example
// Var declarations (hoisted):
// Normal variable
var variable = "value"; // Declare & Initialization first
console.log(variable);
// But in JavaScript a variable can be used before it has been declared.
console.log(variable2); // accessing first
var variable2 = "value"; // Declare & Initialization later
// Function declarations (hoisted):
// Normal function
myFunction(); // Function call works even before declaration (hoisted)
function myFunction() {
console.log("Hello! World");
}
// Function expression
var myFunction1 = function () {
console.log("Hello! World");
};