I did a google search for the answer but I've probably overlooked something obvious... I wish to comment out a block of code that has the potential to have nested comments, where they can terminate the parent comment early. In c I've seen it done like follows:
#if 0
/* Code */
#endif
but js doesn't seem to have standard preprocessor. Is there a way?