J020 Loop
A basic task focusing on for-loops in ES (ECMAScript).
Create an empty folder and within it, create a file named app.js. In this file, construct a multiplication table that, when printed to the console, looks approximately like this:
Tip
Consider using two loops and the padStart(5) method (available on the String type) to right-align numbers in the table.