Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
And please mark your post as having spoiler content next time.
Can someone tell me what I'm doing wrong? I'm about ready to gouge my eyes out... jk
function multiTable(number) {
let str = ' ';
for(let i = 1; i <= 10; i ++){
str +=
${number} * ${i} = ${number * i}\n
};
return str;
};
looks like u solve it in Java ~~
looks like u solved it ~~
You're supposed to return the result, not print it. You don't need to call the function yourself either. You can see the expected output in sample tests (bottom right window)
This comment is hidden because it contains spoiler information about the solution