多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# Comments Comments are statements that will not be executed by the interpreter, comments are used to mark annotations for other programmers or small descriptions of what your code does, thus making it easier for others to understand what your code does. In Javascript, comments can be written in 2 different ways: - Line starting with `//`: ~~~ // This is a comment, it will be ignored by the interpreter var a = "this is a variable defined in a statement"; ~~~ - Section of code starting with `/*`and ending with `*/`, this method is used for multi-line comments: ~~~ /* This is a multi-line comment, it will be ignored by the interpreter */ var a = "this is a variable defined in a statement"; ~~~ Exercise Mark the editor's contents as a comment ~~~ Mark me as a comment or I'll throw an error ~~~