-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.js
63 lines (51 loc) · 1.11 KB
/
hello.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
// const a = 4;
// b = 12;
// // console.log("hello bbs");
// // console.log(a + b);
// if (a > 5) {
// console.log(a + " is greater than 5");
// } else if (b > 5) {
// console.log(b + " is greater than 5");
// } else {
// console.log(a + " & " + b + " are smaller than 5");
// }
// const n = 10;
// for (let a = 1; a < n; a++) {
// console.log(a);
// }
// // JSON = JavaScript Object Notation
// const data = {
// // key: 'value'
// key1: "2",
// key2: "therefore",
// key3: true,
// };
// console.log(data);
// // Array
// const c = [n, 2, 4, "string", "01", true];
// console.log(c);
// for (let a = 1; a < length(c); a++) {
// console.log(c(a));
// }
// const a = {
// b: undefined
// c = {
// a: "sjkd"
// b: "new"
// }
// }
try {
const a = 10;
const a = 45;
console.log("Value of a is " + a);
} catch (err) {
console.log("look for debugging");
}
// function square(x) {
// return x * x;
// }
// function print(x) {
// console.log(x);
// }
// print("Hello World");
// print(" Square of 109 is " + square(109));