-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion40.html
More file actions
34 lines (27 loc) · 800 Bytes
/
Question40.html
File metadata and controls
34 lines (27 loc) · 800 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
<!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>Question 40</title>
</head>
<body>
<script>
function make_album(name, title, num){
const musicAlbum = {
artistName: name,
albumTitle: title,
tracks: num
};
return musicAlbum;
}
var albums = {
album1: make_album("Bhool Bhoolayian 2", "Arijit Singh", 2),
album2: make_album("Tu Janne Na", "Atif Aslam", 4),
album3: make_album("Ghalat Fehmi", "Asim Azhar"),
}
console.log(albums);
</script>
</body>
</html>