0
What is the use of multi line comments? We use it just to write the next comment from another line?
3 ответов
+ 1
The most common use for myself is that I comment out a block of code or other during testing, very useful if you don't want to delete it before verifying that the new code is working. :)
0
oh that's a great thing! thanks for sharing!
0
Commenting is a way that you can leave comments within your code without affecting the code itself.
Commenting is also a convenient way to make code inactive without having to delete it entirely.
You can start a comment with <!-- and end a comment with -->