+ 5
how to add comment to code that don't appear in output ?
how to add comment to code that don't appear in output ?!
5 Answers
+ 17
most are
//comment
and
/* multiline
comment
*/
for ruby
#comment
+ 17
multiline
/*CSS*/
/*JavaScript*/
single line
//JavaScript
<!--html-->
+ 12
for most languages:
you use " //text here"
and
/*
multi line text here
*/
-------------------------
#text for ruby
<!--text for html-->
also, dont use so many tags....
+ 3
â
0
thanks all