JavaScript Taskbook Level 6.2
By clicking on the button, create an HTML table with the specified width and height.
By clicking on the button, create an HTML table with a given width and height so that the cells contain their ordinal numbers.
By clicking on the button, create an HTML table with a given width and height so that the cells contain the numbers of their rows and columns.
Given an array:
[
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
]
When you click the button, create a table filled with data from this array.