forked from vsb-vaj/template-lab-2024s-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
task-bonus.js
89 lines (80 loc) · 2.41 KB
/
task-bonus.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
// 1# ========== BONUS =======================
// With nested cycle display this:
// *
// * *
// * * *
// * * * *
// * * * * *
// Your code:
const drawTriangle = (length = 5) => {
for (let i = 0; i < length; i++) {
let line = "";
for (let j = 0; j <= i; j++) {
line += "* ";
}
console.log(line);
}
};
// 2# ========== BONUS =======================
// Write function which will (with cycles) display this (keep in mind that there is no space after the last char):
// * * * * * * * * * *
// * * * * * * * * * T
// * * * * * * * * P T
// * * * * * * * I P T
// * * * * * * R I P T
// * * * * * C R I P T
// * * * * S C R I P T
// * * * A S C R I P T
// * * V A S C R I P T
// * A V A S C R I P T
// J A V A S C R I P T
// Your code:
const drawJavascriptWord = (word = "javascript") => {
word = word.toUpperCase();
for(let i = word.length; i >= 0; i--){
let line = "";
for(let j = 0; j < word.length; j++){
if(j < i){
line += "* ";
} else {
line += word[j] + " ";
}
}
console.log(line);
}
};
// 3# ========== BONUS =======================
// Create function that takes array of vehicles with measured top speeds. Return array of vehicle with top speed.
// Example:
// const vehicles = [
// { name: "Executor Star Dreadnought", measuredSpeeds: [555, 545, 577, 600] },
// { name: "T-47 Airspeeder", measuredSpeeds: [300, 311, 299, 350] },
// { name: "AT-AT", measuredSpeeds: [20, 21, 20, 19] },
// ];
// getVehiclesAndTopSpeed(vehicles) ➞ will return ➞ [
// { name: "Executor Star Dreadnought", topSpeed: 600},
// { name: "T-47 Airspeeder", topSpeed: 350 },
// { name: "AT-AT", topSpeed: 21 },
// ];
// Your code:
const getVehiclesAndTopSpeed = (vehicles) => {
let topSpeeds = [];
vehicles.forEach((vehicle) => {
topSpeeds.push({name: vehicle.name, topSpeed: Math.max(...vehicle.measuredSpeeds)});
})
return topSpeeds;
};
/*
Print implemented stuff
*/
console.log("\nDraw triangle:");
drawTriangle();
console.log("\nWord:");
drawJavascriptWord();
console.log("\nTop speeds:");
const vehicles = [
{name: "Executor Star Dreadnought", measuredSpeeds: [555, 545, 577, 600]},
{name: "T-47 Airspeeder", measuredSpeeds: [300, 311, 299, 350]},
{name: "AT-AT", measuredSpeeds: [20, 21, 20, 19]},
];
console.log(getVehiclesAndTopSpeed(vehicles));