Skip to content

Commit a971ad0

Browse files
authored
Merge pull request #1 from EasyCode-JavaScriptReact-v1/homework-1
homework-1 made by Balashov Nikita. I created object with evry type o…
2 parents 3492849 + d5af77c commit a971ad0

File tree

1 file changed

+29
-0
lines changed
  • js-core/homeworks/homework-1/src

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
//Home Work 1 made by Balashov Nikita
2+
3+
const firstNumber = 38012345678;
4+
const secondNumber = 38087654321;
5+
const thirdNumber = undefined;
6+
7+
const numbers = [firstNumber, secondNumber, thirdNumber];
8+
9+
const photo = null;
10+
11+
const workBlock = {
12+
workCompany: "BlaBlaCar",
13+
position: "driver",
14+
workEmail: "driver@email.com"
15+
};
16+
17+
18+
const user = {
19+
photo,
20+
title: NaN,
21+
firstName: "Ivan",
22+
secondName: "Ivanov",
23+
numbers,
24+
workBlock,
25+
inViber: true,
26+
inTelegram: false,
27+
};
28+
29+
console.log(user);

0 commit comments

Comments
 (0)