Challenge 1: Multiplication Table of a Number
In this challenge, you have to print the multiplication table of a number up to 10.
We'll cover the following...
Problem statement
In this challenge, you will store all the values computed from a multiplication in the string answer
. You can use the valueOf()
method of string to convert int
value into a string.
Example
...