-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
41 lines (28 loc) · 630 Bytes
/
Copy pathscript.js
File metadata and controls
41 lines (28 loc) · 630 Bytes
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
// var string = "Hello ";
// string += "World";
// console.log(string + "!");
// Regular Math Operators
// console.log((5 + 4) / 3);
// console.log(undefined/5);
// function test1 (a) {
// console.log(a / 5);
// }
// test1();
// Equality
// var x = 4, y = 4;
// if(x == y)
// {
// console.log("x=4 is equal to y=4");
// }
// x = "4";
// if(x == y){
// console.log("x=4 is equal to y=4");
// }
// Strickt Equality
// var x = 4, y = 4;
// if (x === y){
// console.log("Strict: x=4 is equal to y=4");
// }
// else{
// console.log("Strict: x=4 is NOT equal to y=4");
// }