Implement the function isArrayIdentical in helper.js without sorting them
It should return true if two arrays have the same elements. The order of the elements doesn’t matter.
Arrays will only have plain fields (strings, numbers or booleans)...
The second task is harder than the first. And there are also some things that you may be unfamiliar with.
Don’t stress it. You just need to change the output string....
Take a look at how the variable “m” is created and initialized with the value 5.
Create a variable “n” and initialize it with the number 10.
This task is part of the Full-Stack JavaScript Course...
Take a look at a variable “welcomeMessage” initialised with the value “Hello!”.
Create a variable “goodbyeMessage” and initialize it with the string “See you soon!”
This task is part of the Full-Stack JavaScript Course...
A lot of times we need to fix the code styling in legacy projects.
Apply necessary changes and make sure all the variables names are written in camelCase.
This task is part of the Full-Stack JavaScript Course...
Someone has crashed the code by initialising numbers as strings.
Fix the initialization of variables x and y to make sure the number 4 is logged to the console.
This task is part of the Full-Stack JavaScript Course...
This task might contain some unfamiliar things.
Don’t stress it.
You need to fix one character to make sure that myMessage is printed out to the console in UPPERCASE letters....
Find variables that were never changed after the initialization.
Make them constants.
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...
Create 5 constants in the file solution.js.
Choose any names you like.
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...
Import constants from the file constants.js and log them to the console using console.log
Each console.log should print a different constant to the screen
This task is part of the Full-Stack JavaScript Course...