settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: Car Factory (task with JavaScript object composition)

+1 vote

Write a JS program that assembles a car by given requirements out of existing components. The client will place an order in the form of an object describing the car. You need to determine which parts to use to fulfil the client’s order. You have the following parts in storage:

An engine has power (given in horsepower) and volume (given in cubic centimeters). Both of these values are numbers. When selecting an engine, pick the smallest possible that still meets the requirements:

Small engine: { power: 90, volume: 1800 }
Normal engine: { power: 120, volume: 2400 }
Monster engine: { power: 200, volume: 3500 }


A carriage has a type and color. Both of these values are strings. You have two types of carriages in storage and can paint it any color.

Hatchback: { type: 'hatchback', color: <as required> }
Coupe: { type: 'coupe', color: <as required> }


The wheels will be represented by an array of 4 numbers, each number represents the diameter of the wheel in inches. The size can only be an odd number. Round down any requirements you receive to the nearest odd number.

Input:
You will receive an object as an argument to your function. The format will be as follows:

{ model: <model name>,
  power: <minimum power>,
  color: <color>,
  carriage: <carriage type>,
  wheelsize: <size> }


Output:
Return the resulting car object as a result of your function. See the examples for details.

Examples:

Sample Input:

{ model: 'VW Golf II',
  power: 90,
  color: 'blue',
  carriage: 'hatchback',
  wheelsize: 14 }
 
Output:

{ model: 'VW Golf II',
  engine: { power: 90,
            volume: 1800 },
  carriage: { type: 'hatchback',
              color: 'blue' },
  wheels: [13, 13, 13, 13] }


Sample Input:

{ model: 'Opel Vectra',
  power: 110,
  color: 'grey',
  carriage: 'coupe',
  wheelsize: 17 }

Output:

{ model: 'Opel Vectra',
  engine: { power: 120,
            volume: 2400 },
  carriage: { type: 'coupe',
              color: 'grey' },
  wheels: [17, 17, 17, 17] }

asked in JavaScript category by user andrew

1 Answer

0 votes

My solution (code):

function assembleCar(initialCarParts) {

    let modifiedCar = {};
    let engine;

    if (initialCarParts.power <= 90) {
        engine = {
            power: 90,
            volume: 1800
        };
    } else if (initialCarParts.power <= 120) {
        engine = {
            power: 120,
            volume: 2400
        };
    } else if (initialCarParts.power <= 200) {
        engine = {
            power: 200,
            volume: 3500
        };
    }

    let wheels = [];
    if (initialCarParts.wheelsize % 2 == 0) {
        initialCarParts.wheelsize--;
    }
    for (let i = 0; i < 4; i++) {
        wheels.push(initialCarParts.wheelsize);
    }


    modifiedCar.model = initialCarParts.model;
    modifiedCar.engine = engine;
    modifiedCar.carriage = {
        type: initialCarParts.carriage,
        color: initialCarParts.color
    };
    modifiedCar.wheels = wheels;

    return modifiedCar;
}

console.log(assembleCar(
    {
        model: 'VW Golf II',
        power: 90,
        color: 'blue',
        carriage: 'hatchback',
        wheelsize: 14
    }));

 

answered by user icabe
...