What is comment | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

What is comment

7th Dec 2017, 11:07 AM
Sruthi Sen
Sruthi Sen - avatar
2 Answers
+ 2
/* In real life, you know what's a comment unless you're a robot */ /* In coding, a comment is something you think and express about any part of a code. You may want to express it explicitly in the code, but you are afraid that it may cause exceptions. So you put it in between /* */ or in the same line after //. This makes sure it doesn't get compiled. */ <!-- Comments are important as they can be used to describe parts of a code. It's a good practice to do this. --> //Check out this code: https://code.sololearn.com/W79Duid8e1x2/?ref=app
7th Dec 2017, 11:37 AM
DAB
DAB - avatar
+ 1
//single line comment /*multi line comment */ comments are ignored by the compiler so you can write something there to help you and others to read your code
7th Dec 2017, 11:16 AM
Roabs
Roabs - avatar