Omar-Basel-ALkhasawneh/JoVision-Javascript-tasks-
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# Jovision interinship All tasks not in the repository are related to managing GitHub ## task 6 Create an HTML page that has 5 buttons: [Javscript, Array methods] A. Button one: When clicked it creates an array of all the numbers between 0 to 100, Removes the numbers that are divisible by 3 from the array and prints it in the console B. Button two: When clicked it creates an array of all the numbers between 0 to 100, Adds the numbers from 100 to 150 to the array and prints them in the console C. Button three: When clicked it creates an array of all the numbers between 0 to 100, Adds 3 to each array member and print it in the console D. Button four: When clicked it creates an array of all the numbers between 0 to 100, Then prints the members from index 20 to 40 in the console E. Button five: When clicked it should create an array of all the numbers between 0 to 100, Shuffle the members of the array using the function provided to you in the hints, prints the shuffled array in the console, sorts it in descending order and prints in again