diff --git a/solutions/day-01/index.html b/solutions/day-01/index.html index 300686b..db3b6b4 100644 --- a/solutions/day-01/index.html +++ b/solutions/day-01/index.html @@ -6,9 +6,13 @@ + + + + \ No newline at end of file diff --git a/solutions/day-01/objects.js b/solutions/day-01/objects.js new file mode 100644 index 0000000..f05d922 --- /dev/null +++ b/solutions/day-01/objects.js @@ -0,0 +1,21 @@ +const person = { + firstName: 'Asabeneh', + lastName: 'Yetayeh', + age: 250, + country: 'Finland', + city: 'Helsinki', + skills: [ + 'HTML', + 'CSS', + 'JavaScript', + 'React', + 'Node', + 'MongoDB', + 'Python', + 'D3.js', + ], + getFullName: function () { + return `${this.firstName}${this.lastName}` + }, + 'phone number': '+3584545454545', + } \ No newline at end of file