How to add a comment in a JavaScript?
programix
·
Javascript uses C-style comments, for block comments (multiline) use:
/*
comments go anywhere in here
*/
for short one line comments use double-slash:
// this is also a comment