Skip to content

Commit 611b588

Browse files
authored
Merge pull request #2 from EasyCode-JavaScriptReact-v1/homework_1
homework-1
2 parents 3492849 + 77562a0 commit 611b588

File tree

2 files changed

+34
-9
lines changed

2 files changed

+34
-9
lines changed
Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
2+
<html lang="ru">
3+
<head>
44
<meta charset="UTF-8">
5-
<title>Home work 1</title>
6-
</head>
7-
<body>
8-
9-
<script src="src/main.js"></script>
10-
</body>
11-
</html>
5+
<title>test page</title>
6+
</head>
7+
<body>
8+
<script src="src/main.js"></script>
9+
</body>
10+
</html>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
let phoneBook = {
2+
subscribersCard: {
3+
firstName: 'Yulya',
4+
secondName: 'Ivanova',
5+
photo: undefined,
6+
phoneNumber: {
7+
main: +380633888930,
8+
add: null
9+
},
10+
emailAddress: '[email protected]',
11+
group: 'friends',
12+
notes: null,
13+
ringtones: [
14+
'standart:true',
15+
'rington1:false',
16+
'rington12:false'
17+
],
18+
address: [
19+
'street: "23 serpnya"',
20+
'home: "10"',
21+
'apartmen: "82"'
22+
]
23+
}
24+
};
25+
26+
console.log(phoneBook);

0 commit comments

Comments
 (0)