💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
# 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 ~~~