Advertisement
SergioG_0823849

Untitled

Apr 4th, 2024
588
0
305 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Define the Engine object
  2. const Engine = {
  3.   horsepower: 250,
  4.   fuelType: 'gasoline'
  5. };
  6.  
  7. // Define the Vehicle object
  8. const Vehicle = {
  9.   make: 'Jeep',
  10.   model: 'Cherokee'
  11. };
  12.  
  13. // Create a Car object by composing Vehicle and Engine objects using Object.assign()
  14. const Car = Object.assign({}, Vehicle, Engine);
  15.  
  16. // Test Car object
  17. console.log(Car);
Tags: LEGION
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement