NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
# 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 ~~~