-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.html
More file actions
35 lines (35 loc) · 831 Bytes
/
js.html
File metadata and controls
35 lines (35 loc) · 831 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
<!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>
//var a="deepan"
//var a=10
//var b=20
//alert(a+b)
//var b="cse"
//var animals=["cat","tiger","lion"]
//alert(animals.length);
//alert(animals.sort())
//alert(animals[1].length)
//partial
//var MyName = "Deepanganth"
//camelcase
//var myNameIS = "velindia"
//underscore
//var my_name_is = "prem"
//alert(my_name_is)
var i=10
while(i,15)
{
console.log(i);
i++
}
</script>
</body>
</html>