1. Write a function to check whether a number is even or not.
2. Write a function to get the current date
3. Write a sort function in JavaScript. (U can use any sorting alghoritm)
4. Write a function to calculate days left until next Christmas.
5. Write a program to calculate multiplication and division of two numbers (input from user).
6.Write a program to get the website URL (loading page)
7. Write a program to create a new string from a given string changing the position of first and last characters. The string length must be greater than or equal to 1
8. Write a program to create a new string from a given string with the first character of the given string added at the front and back.
9. Write a program to create a new string from a given string taking the last 3 characters and added at both the front and back. The string length must be 3 or more.
10. Write a program to check if three given integer values are in the range 50..99 (inclusive). Return true if one or more of them are in the said range.
11. Write a program to find the largest of three given integers
12. Write a program to find a value which is nearest to 100 from two different given integer values
13. Write a program to replace every character in a given string with the character following it in the alphabet.
14. Write a program to capitalize the first letter of each word of a given string
15. Write a program to rotate the elements left of a given array of integers of length 3.
16. Write a program to generate a random hexadecimal color code.
17. Write a program to filter out the non-unique values in an array.
Add arrays only 1 at time!18. Write a JavaScript function that generates a string id (specified length) of random characters.
19. Write a program to compute the sum of an array of integers.
20. Write a program to get the first n Fibonacci numbers.