This time I will bring you the method of making multiplication table with JS. What are the notes for making the multiplication table with JS. Here is a practical case. Let’s take a look. one time.
Without further ado, I will post the code directly for you. The specific code is as follows:
<!DOCTYPE html> <html> <head> <title>99乘法表</title> <meta charset="utf-8"> </head> <body> <script type="text/javascript"> for (var i = 1; i <= 9; i++) { for (var j = 1; j <= i; j++) { document.write(i+'*'+j+'='); document.write(i*j+' '); } document.write("<br/>"); } </script> </body> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!
Recommended reading:
How vue proxyTable implements interface cross-domain request debugging
How to operate the mongodb database in Node.js
The above is the detailed content of How to create multiplication table using JS. For more information, please follow other related articles on the PHP Chinese website!