JavaScript Taskbook Level 7.1
Given a button and a list ul filled with numbers. By clicking on the button, delete the list item containing the largest number.
Given a paragraph containing text with words. Also given a button. By clicking on the button, take each word into its own tag span.
A paragraph is given containing text with words and fractions of the form 1/2. A button is also given. By clicking on the button, take each fraction into its own tag span.
Given a table and an input. The user's date of birth is entered into the input in the format year-month-day. Output all user's dates of birth in the first column, and the corresponding days of the week in the second column.
Write a program that will generate the following array:
[
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
]