0
Запятая в начале цикла
Имеем цикл: for (z=50; z<=60; z++) { document.write(", " + z); } Как убрать запятую в начале цикла?
2 Answers
+ 2
You can see three possible solutions to add comma after each element in the code. Hope it helps you 😉
https://code.sololearn.com/W1Z2Ybvyd3at/?ref=app
0
Thanks)