-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjectArrayPractice.js
38 lines (34 loc) · 1.15 KB
/
objectArrayPractice.js
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
/*
JONATHAN SANCHEZ
DAY 2
SEPT 21 2021
*/
// press shift + function + f to format the document
let BocaCodeInstructor = {
firstName: 'Jonathan',
lastname: 'Sanchez',
city: 'Boca Raton',
instructor_family: {
wife: 'Claudia',
d1: 'Mia',
d2: 'Annalee',
pets: ['🐥', '🐷', '🦊']
}
}
// as soon as i type the name of the object vscode will make suggestions on the keys of the object
console.log('Instructor first name:' + BocaCodeInstructor.firstName)
console.log('Instructor Full name:' + BocaCodeInstructor.firstName + ' ' + BocaCodeInstructor.lastname)
// create an object for family and put my family in it
let myFamily = {
firstName: 'Dariel',
lastname: 'Mera',
city: 'Boca Raton',
familyMembers: {
wife: 'Natalie',
sd1: 'Amanda',
sd2: 'Isabella',
pets: ['🐶'] // for emojies shortcut ctrl + cmd + spacebar
}
}
console.log('Me and My Wife:' + myFamily.firstName + ' ' + myFamily.familyMembers.wife);
console.log('Dariels Wife, My Stepdaughter and Pet:' + myFamily.familyMembers.wife + " " + myFamily.familyMembers.sd1 + " " + myFamily.familyMembers.pets[0])