function tabuada(num) {
//let num = 5;
console.log(`Tabuada do numero: ${num}`);
console.log("");
for (let i = 1; i <= 10; i++) {
console.log(`${num} x ${i} = ${num*i}`)
}
};
tabuada(9);
To embed this project on your website, copy the following code and paste it into your website's HTML: