馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

Task #115 - Array of objects

Fill in the array objects with 3 different objects and export it from the file helper.js This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 路 1 min 路 Coderslang Master

Task #116 - Array of strings

Fill the array strings with 5 different strings and export it from the file helper.js This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 路 1 min 路 Coderslang Master

Task #120 - Max of 2

Implement the function findMax that takes two numbers and returns the bigger one. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 路 1 min 路 Coderslang Master

Task #121 - Min of 3

Implement the function min that takes three numbers and returns the smallest one. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...

August 15, 2020 路 1 min 路 Coderslang Master

Task #122 - Get the lesser evil

Sometimes, there isn鈥檛 a good choice and we need to choose the lesser evil. Implement a function getLesserEvil that takes two objects, compares them by the field evilFactor and returns the one with the smallest evilFactor....

August 15, 2020 路 1 min 路 Coderslang Master

Task #123 - Less than or equal

The function lte is broken. Fix the conditions inside if (...) statements. The messages printed to the screen should start making sense after the fix Don鈥檛 change the output, only fix the conditions....

August 15, 2020 路 1 min 路 Coderslang Master

Task #124 - Greater than or equal

Implement the function gte in helper.js. It should accept 2 parameters (x, y) and return true if x is greater than or equal to y return false otherwise The function gte should not contain more than one if statement...

August 15, 2020 路 1 min 路 Coderslang Master

Task #125 - Body mass index

Implement the function getBMICategory(bmi) in helper.js. It should accept a single parameter bmi and return the string representation of the body mass index category based on the following rules: Underweight = 18....

August 15, 2020 路 1 min 路 Coderslang Master

Task #126 - All the same

Implement the function allTheSame in helper.js. It should accept 3 boolean parameters (x, y, z) and return true if x, y and z are the same (all true or all false) return false otherwise The function allTheSame should not contain more than one if statement...

August 15, 2020 路 1 min 路 Coderslang Master

Task #127 - One will do

Implement the function oneWillDo in helper.js. It should accept 3 boolean parameters (x, y, z) and return true, if at least one of them is true return false otherwise The function oneWillDo should NOT contain any if statements...

August 15, 2020 路 1 min 路 Coderslang Master