You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// console.log(Number("Hello")); // NaN = Not a Number
21
+
22
+
// ---------------------------
23
+
24
+
// 2. String
25
+
// console.log("Hello World!");
26
+
// console.log("Hello World!");
27
+
// console.log("There's No one Here");
28
+
// console.log("There's No one Here");
29
+
30
+
// ---------------------------
31
+
32
+
// 3. Boolean
33
+
true;// 1
34
+
false;// 0
35
+
36
+
// console.log(true);
37
+
// console.log(false);
38
+
39
+
// ---------------------------
40
+
41
+
// console.log("Hello World!");
42
+
// console.log("Hello World!");
43
+
// console.log("Hello World!");
44
+
// console.log("Hello World!");
45
+
// console.log("Hello World!");
46
+
// console.log("Hello World!");
47
+
// console.log("Hello World!");
48
+
// console.log("Hello World!");
49
+
50
+
// var name
51
+
// let name
52
+
// const name
53
+
54
+
// var fName = "Amin";
55
+
varage=19;
56
+
vardescription=
57
+
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";
58
+
59
+
// console.log(description);
60
+
// console.log("Hello My name is " + fName + " And i'm " + age + " I do " + description)
0 commit comments