-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab.js
613 lines (450 loc) · 14.8 KB
/
lab.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
// PROBLEM 1 //
/*
Create an object called me.
Give it a key of name with the value being your name, and another key of age with the value being your age.
*/
//Code here
let me = {
name: 'Joy Umoekpo',
age: 24
};
console.log(me);
console.log('--------------------------------');
//////////////////////////// PROBLEM 2 ////////////////////////////
//Create an object saved to the variable dog.
//The dog object should have the following properties:
//name (a string), color (a string), age (a number),
//and goodBoy/goodGirl (a boolean).
//Code here
let dog = {
name: 'Makoto',
color: 'brown',
age: 18,
goodBoy: true
};
console.log(dog);
console.log('--------------------------------');
//////////////////////////// PROBLEM 3 ////////////////////////////
/* Print out the name of the dog you created in problem 2 using dot-notation. */
//Code here
console.log(dog.name);
console.log('--------------------------------');
//////////////////////////// PROBLEM 4 ////////////////////////////
/* Print out the color of the dog you created in problem 2 using bracket-notation. */
//Code here
console.log(dog['color']);
console.log('--------------------------------');
//////////////////////////// PROBLEM 5 ////////////////////////////
/*
Make a 'favoriteThings' object that contains the following keys: band, food, person, book, movie, holiday.
Have the values to those keys be strings that are equal to your favorite thing in that category.
*/
//Code here
let favoriteThings = {
band: 'Rascal Flatts',
food: 'Spaghetti',
person: 'Noé',
book: 'The Alchemist',
movie: 'Real Steel',
holiday: 'Christmas'
};
console.log(favoriteThings);
/*
After you've made your object, use bracket or dot notation to add another key named 'car' with the value being your favorite car and then another key named 'show' with the value being your favorite show.
*/
//Code here
favoriteThings.car = 'Toyota';
favoriteThings.show = 'Wicked';
console.log(favoriteThings);
/*
Now use bracket or dot notation to change the value of the food key in your favoriteThings object to be 'Chicken Nuggets'
and change the value of the book key in your favoriteThings object to be 'Harry Potter'. (If they were either of those things already, change them to something else.)
*/
//Code here
favoriteThings.food = 'Chicken Nuggets';
favoriteThings.book = 'Harry Potter';
console.log(favoriteThings);
console.log('--------------------------------');
//////////////////////////// PROBLEM 6 ////////////////////////////
// Do not edit the code below.
var carDetails = {
color: 'red',
make: 'toyota',
model: 'tacoma',
year: 1994
};
// Do not edit the code above.
/*
Use object destructuring to save the property values from the object carDetails into new variables.
*/
//Code Here
let {color, make, model, year} = carDetails;
console.log(color);
console.log(make);
console.log(model);
console.log(year);
console.log('--------------------------------');
//////////////////////////// PROBLEM 7 ////////////////////////////
/*
In the function below named greeting, it is receiving an object as a parameter.
Use object destructuring to save the object properties to new variables.
The property names are firstName, lastName, and title.
*/
let object = {
firstName: 'Joy',
lastName: 'Umoekpo',
title: 'Ms.'
};
function greeting(obj) {
//Code Here
let {
title,
firstName,
lastName
} = obj
// Do not edit the code below.
return 'Hello, ' + title + ' ' + firstName + ' ' + lastName + '!';
// Do not edit the code above.
};
console.log(greeting(object));
console.log('--------------------------------');
//////////////////////////// PROBLEM 8 ////////////////////////////
/*
Write a function called totalPopulation that will take in an object.
That object will have 4 properties named utah, california, texas and arizona.
The property values will be numbers.
Use object destructuring to save the property values to new variables.
Sum up the values and return the total number.
*/
//Code Here
let stateObject = {
utah: 3,
california: 4,
texas: 3,
arizona: 2
};
const totalPopulation = (obj) => {
let {
utah,
california,
texas,
arizona
} = obj;
return utah + california + texas + arizona;
};
console.log(totalPopulation(stateObject));
console.log('--------------------------------');
//////////////////////////// PROBLEM 9 ////////////////////////////
/*
Write a function called ingredients that will take in an object.
This object will have 3 properties named carb, fat, and protein.
The property values will be strings.
Use object destructuring to save the property values to new variables.
Push these new variables to an array and return the array.
*/
//Code Here
let ingredientsObject = {
carb: 'carb',
fat: 'fat',
protein: 'protein'
};
const ingredients = (obj) => {
let {
carb,
fat,
protein
} = obj;
return [carb, fat, protein];
};
console.log(ingredients(ingredientsObject));
console.log('--------------------------------');
//come back
//////////////////////////// PROBLEM 10 ////////////////////////////
// Do not edit the code below.
var user = {
name: 'Bryan',
age: 24,
pwHash: 'U+Ldlngx2BYQk',
email: '[email protected]',
birthday: '05/02/1990',
username: 'bryansmith33'
};
// Do not edit the code above.
/*
Let's say I, the user, decided to change my name and email address to the following:
name -> 'Bryan G. Smith' and email -> '[email protected]'.
Make that change without modifying the original object code above.
*/
//Code Here
console.log(user);
user.name = 'Bryan G. Smith';
user.email = '[email protected]';
console.log(user);
console.log('--------------------------------');
//////////////////////////// PROBLEM 11 ////////////////////////////
/*
Using the user object above, delete the users age off of the object.
*/
//Code Here
console.log(user);
delete user.age;
console.log(user);
console.log('--------------------------------');
//////////////////////////// PROBLEM 12 ////////////////////////////
/*
Create a class called 'Cat'. Make sure to call your constructor, and require these 3 parameters: name, age, color.
Outside of your class, create an instance of your cat, passing in whatever values you would like.
Print the name of your cat instance using dot notation.
*/
//Code here
class Cat {
constructor(name, age, color) {
this.name = name;
this.age = age;
this.color = color;
}
};
let myCat = new Cat('Noé', 2, 'white');
console.log(myCat.name);
console.log('--------------------------------');
//////////////////////////// PROBLEM 13 ////////////////////////////
/*
Create a class called 'Wizard'. Make sure to call your constructor, and require these 3 parameters: name, age, favoriteSpell.
Add a function to your Wizard class called castSpell. This function should print "{name} has cast {favoriteSpell}"
Outside of your class, create an instance of your Wizard, passing in whatever values you would like.
Call the castSpell function on the instance of your wizard.
*/
//Code here
class Wizard {
constructor(name, age, favoriteSpell) {
this.name = name;
this.age = age;
this.favoriteSpell = favoriteSpell;
}
castSpell(name, favoriteSpell) {
console.log(`${name} has cast ${favoriteSpell}`)
}
};
let wizard1 = new Wizard();
wizard1.castSpell('Vanitas', 'deletus cursus');
console.log('--------------------------------');
//////////////////////////// PROBLEM 14 ////////////////////////////
/*
Write a class called Phone. We'll use it as if we were creating
phone objects to keep track of inventory using an app.
Phone will build phone objects with brand, model, storage, color, price, and sold properties.
Write a constructor that sets those values -- all of the values
should come from the constructors parameters except sold, which
should always be set to false. We want that to be false since
when we create a new phone, we're putting it in our inventory
and it won't be sold yet.
Create a method called 'sell'.
sell should be a function that changes the value of sold to true and prints the string: '{brand} {model} has been sold.'
Create another method called 'changePrice'. We can use this
to change the price in case a phone isn't selling.
changePrice should take in one argument, 'newPrice'.
Inside the function, reassign the value of the object's price
to be newPrice.
*/
//Code Here
class Phone {
constructor(brand, model, storage, color, price, sold) {
this.brand = brand;
this.model = model;
this.storage = storage;
this.color = color;
this.price = price;
this.sold = false;
}
sell() {
this.sold = true;
console.log(`${this.brand}${this.model} has been sold`)
}
changePrice(newPrice) {
this.price = newPrice;
}
};
//Come back
/*
Next make three new phone instances using your class.
Send in values of your choice. They should match these data types:
- brand: string
- model: string
- storage: number
- color: string
- price: number
*/
//Code Here
let phone1 = new Phone('Android', '12', 435, 'green', 1035);
let phone2 = new Phone('iPhone', '14', 250, 'white', 1300);
let phone3 = new Phone('Samsung', '11', 125, 'pink', 900);
console.log(phone1);
console.log('--------------------------------');
/*
Call the changePrice function on one of your phones,
don't forget to pass in a new price
Then console.log that object to see the price change
*/
//Code Here
phone2.changePrice(500);
console.log(phone2);
console.log('--------------------------------')
/*
Now call the sell method on one of your other phone objects
Print the value of that phone's sell property to make sure it's been changed to true
*/
//Code Here
phone3.sell();
console.log(phone3);
console.log('--------------------------------');
//////////////////////////// PROBLEM 15 ////////////////////////////
/*
Use the spread operator to create a copy of the colors object below.
Store the copy in a variable called colorsCopy.
Note: We did not cover the spread operator in class. We do not expect you to know how to use it. Challenge yourself by going online and researching what the spread operator is and how to use it.
*/
//do not edit this object
const colors = {
background: 'red',
highlight: 'blue',
text: 'yellow'
}
//do not edit this object
//Code Here
const colorsCopy = {...colors};
console.log(colorsCopy);
console.log('--------------------------------');
/*
Now use the spread operator to combine the following 2 objects into one.
Call the new variable helensInfo.
When they combine, none of the properties should be repeated.
*/
//do not edit the objects below
const contactInfo = {
firstName: 'Helen',
lastName: 'Parr',
phoneNumber: 1234445555,
email: '[email protected]',
}
const shippingInfo = {
firstName: 'Helen',
lastName: 'Parr',
street: '100 E. Main Street',
city: 'Anytown',
state: 'AZ',
zipCode: 85004,
}
//do not edit the objects above
//Code Here
const helensInfo = {...contactInfo, ...shippingInfo};
//Print helensInfo to see what it looks like, there should be no repeating properties.
console.log(helensInfo);
console.log('--------------------------------');
//////////////////////////// PROBLEM 16 ////////////////////////////
/*
Create a class called Vehicle. Make sure to call your constructor,
and require these 3 parameters: capacity (how many passengers), color, and mileage.
Write a method inside your class called 'move'.
The move function should take in one parameter, miles.
Inside the function, add the number of miles to the object's mileage.
And finally, print the value of the mileage.
*/
//Code Here
class Vehicle {
constructor(capacity, color, mileage) {
this.capacity = capacity;
this.color = color;
this.mileage = mileage;
}
move(miles) {
this.mileage += miles;
}
}
/*
Create a vehicle using your new class and save it to a variable called myFirstVehicle
*/
//Code Here
const myFirstVehicle = new Vehicle(4, 'green', 0);
console.log(myFirstVehicle);
console.log('--------------------------------');
/*
Now we'll create a class that's based off of the vehicle class.
Write a class called Motorcycle that *extends* the Vehicle class. In the constructor,
make sure you require all of the parameters from the Vehicle class as well as 2
new ones: make and isCool. (Hint: don't forget to call the super function)
*/
//Code Here
class Motorcycle extends Vehicle {
constructor(capacity, color, mileage, make, isCool) {
super(capacity, color, mileage)
this.make = make;
this.isCool = isCool;
}
};
/*
Create a Motorcycle using your new class and save it to a variable called myFirstMotorcycle
*/
//Code Here
let myFirstMotorcycle = new Motorcycle(2, 'white', 0, 'Honda', true);
console.log(myFirstMotorcycle);
/*
Call the move function on myFirstMotorcycle (don't forget the parameter)
*/
myFirstMotorcycle.move(90);
console.log(myFirstMotorcycle);
console.log('--------------------------------');
/*
Let's make another class based off of Vehicle.
Write a class called Boat that *extends* the Vehicle class. The constructor should take in
all the same arguments as Vehicle plus 3 new ones:
name (boats gotta have cool names), type (ski boat, yacht, etc), and isSeaworthy.
Create a method inside of the Boat class called checkSeaworthiness
Inside the method, check to see if the boat is seaworthy
If it is, console.log a string: 'The {color} {type} {name} is seaworthy!'
If it isn't, console.log a string: 'You need to get your {type} in shape!'
Write a second function in this class called performMaintenance
This function should set isSeaworthy to be true
*/
//Code Here
class Boat extends Vehicle {
constructor(capacity, color, mileage, name, type, isSeaworthy) {
super(capacity, color, mileage)
this.name = name;
this.type = type;
this.isSeaworthy = isSeaworthy;
}
checkSeaworthiness() {
if(this.isSeaworthy === true) {
console.log(`The ${this.color} ${this.type} ${this.name} is seaworthy!`);
} else {
console.log(`You need to get your ${this.type} in shape!`);
}
}
performMaintenance() {
this.isSeaworthy = true;
}
}
/*
Create a new boat using your class. You can choose whatever values you like for all the
properties except isSeaworthy -- make that one false. Call your variable myFirstBoat.
*/
//Code Here
let myFirstBoat = new Boat(50, 'black', 0, 'No Carte', 'Jetta');
console.log(myFirstBoat);
console.log('--------------------------------');
/*
Call the checkSeaworthiness method on your new boat
*/
//Code Here
myFirstBoat.checkSeaworthiness();
console.log('--------------------------------');
/*
Now run the performMaintenance method on your boat
*/
//Code Here
myFirstBoat.performMaintenance();
/*
Check the seaworthiness once more (you should be ready for the water!)
*/
//Code Here
myFirstBoat.checkSeaworthiness();