Comments are created by writing text
● after double slash "//" for single line Comments //Single line comment.
● between "/* ... */" for multi-line Comments /* Multi line comment. */
Comment Syntax
//Single line comment.
var name = "John"
/* Multi line comment.
Second line. */
let age =20