-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifElse.html
51 lines (36 loc) · 892 Bytes
/
ifElse.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
let a = Number (prompt("Enter the First Number"));
/* let vs var scope means access of the variable var can be access outside the state
ment and let cant be accessible */
// var b= Number(prompt("Enter the second Number"));
// let c = (a > b && a != 0 ) ||(a + b) <100;
// if else working only Two condition is given
let b = false;
var e = 5;
console.log(e);
if(c)
{
let d= 4;
console.log("true");
console.log(d);
}
else
{
console.log("false");
console.log(d);
}
console.log("block");
console.log(d);
// block is used when multiple statements are given in if statement...
</script>
</body>
</html>