Skip to content
Advertisement

Question regarding JavaScript multiplication table

I am trying to build a multiplication table and display the results, but need to put the x in the top left corner, for some reason it is showing up on the bottom right, what am I doing wrong?

JavaScript

Advertisement

Answer

“What am I doing wrong?” A lot.

You should think about what you are trying to do first, before going at it.

Your html table is ill-formed, you don’t even close the <tr> tags.

JavaScript

Try it here.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement