-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path03-variables.js
73 lines (59 loc) · 2.15 KB
/
03-variables.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* ******************************
* Variables - var, let, const
* ******************************
*/
var name = 'John Doe';
console.log(name);
name = 'Steve Smith';
console.log(name);
var greeting; // init var
console.log(greeting); // greeting will return undefined because it has no value
greeting = 'Hello'; // assigning a value to greeting variable.
console.log(greeting); // log variable value in the console.
/**
* ******************************
* Variables rules:
* can contain letters, numbers, _, $
* cannot start with a number.
*
* Multi Word Variable Names:
*
* var firstName = 'John'; // camelCase
* var first_name = 'Sara'; // under_score
* var FirstName = 'Tom'; // PascalCase
* var firstname; // lowercase
* ******************************
*/
/**
* ********************
* LET Keyword
* ********************
*/
let name2; // init variable.
name2 = 'John Doe'; // assign a value to variable.
console.log(name2);
name2 = 'Steve Smith'; // reassign value to the variable.
console.log(name2);
/**
* ********************
* CONST Keyword
* ********************
*/
const name3 = 'John'; // create and assign value to const variable
console.log(name3);
// name3 = 'Sara'; // cannot reassign new value to const variable
// const greeting; // cannot init a const variable, have to assign a value
// We can change the values for Object/Array but we cannot reassign the object/array
const person = { // create an onject
name: 'John',
age: 30
}
console.log(person); // log object literal
person.name = "Sara"; // taking the object property and mutating/changing the value
person.age = 32; // taking the object property and mutating/changing the value.
console.log(person); // log the new object literal values.
const numbers = [1,2,3,4,5]; // create an Array.
console.log(numbers); // log the 5 items within the array
numbers.push(6); // adding 6 to the array using the push method
console.log(numbers); // log the number arrays with 6 items