Answers for "3.3. Comments¶"

0

3.3. Comments¶

// This demo shows off comments!

// console.log("This does not print.");

console.log("Hello, World!"); /* Comments do not have to start at 
the beginning of a line./*

/* Here is how
to have
multi-line
comments. */

console.log("Comments make your code more readable by others.");
Posted by: Guest on June-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language