+ 2
how do you write text instead of numbers in a For loop?
gave the task on JS to write 3 times the word "experssion" will be pulled through the For loop, how can I do it?? I don't see..
7 odpowiedzi
+ 5
Thanks for the downvote to someone that wants to help you😂😂👍👍😅
+ 3
So you want this?
for(let i = 0; i < 3; i++) {
console.log(“expression”)
}
+ 2
Output to console
https://www.sololearn.com/learn/JavaScript/1124/?ref=app
For loop
https://www.sololearn.com/learn/JavaScript/1140/?ref=app
+ 1
I read, I read, but it didn't work out :( that's why I ask you
+ 1
What’s exactly what you don’t understand?
The for loop or printing an string?
Console.log(50) //Prints a number 50
Console.log(“50”) //Prints a string 50
+ 1
yeah, thank you :D
0
you didn't understand my question by answering the wrong thing at all.
I appreciated that.
I asked how to do it in the "For" cycle.