Please write the code in JavaScript, thanks.
General Requirements: You MUST submit a JavaScript file (*isi).
Program MUST run with no errors.
MUST add two (2) newline white space between each problem.
Write each problem as a single/multiple line comment.
Use a multiple line comment to comment out all completed problems.
(20 Points) Design the pseudo-code and script to find if a number entered by the user is within a range as follows:
1) If the number is between 0 and 100 (inclusive), then display the message on console: "The number <number> is between 0 and 100," where <number> is the actual number the user entered.
2) If the number is less than 0 (negative), then display the message on console: "The number <number> is below the range 0 and 100," where <number> is the actual number the user entered.
3) If the number is greater than 100, then display the message on console: "The number <number> is above the range 0 and 100," where <number> is the actual number the user entered.
Problem Requirements: MUST use if, if-else, if-else-if, or nested conditional structures.