I'm new to javascript and have few questions...
I have to write a program to take an input of a number from a user. Then using a for loop print the times table of this number till the first 10 multiples. (For example: If the number inputted by the user is 4, your output onto the html page should be of the following format:
4 * 1 = 4
4 * 2 = 8
4 * 3 = 12
…..
…..
…..
4 * 9 = 36
4 * 10 = 40