-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs5.html
More file actions
44 lines (35 loc) · 1.18 KB
/
js5.html
File metadata and controls
44 lines (35 loc) · 1.18 KB
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
<!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>Arrays and Objects</title>
</head>
<body>
<div class="container"><h1>hemlo</h1></div>
<script>
let car=[1,2,3,'this','That',undefined];
for (let i = 0; i < car.length; i++) {
const element = car[i];
console.log('iterating using a loop')
console.log(element)
}
let cars=new Array(1,2,3,4,'cAR','AAR PAAr', undefined)
for (let i = 0; i < cars.length; i++) {
const element = cars[i];
console.log('iterating using a loop')
console.log(element)
}
const employee={name:'Harry',
age:25,salary:100000,residence:'Rampur'}
console.log('iterating without a loop objects')
console.log(employee)
console.log('iterating without a loop')
console.log(car)
console.log('iterating without a loop')
console.log(cars)
console.log(cars.length)
</script>
</body>
</html>