Task #111 - First user
Take a look at solution.js. It imports an object user from the file helper.js and logs it to the screen. Add properties name, surname and address to the user object in the file helper....
Take a look at solution.js. It imports an object user from the file helper.js and logs it to the screen. Add properties name, surname and address to the user object in the file helper....
Initialize the array objectives with 3 strings ‘Full’, ‘Stack’, ‘Javascript’ in 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...
Make twoDime a 2 dimensional array in 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...
Fill in the array numbers with 10 different numbers 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...
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...
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...
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...
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...
Sometimes, there isn’t 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....
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’t change the output, only fix the conditions....