JavaScript |评论
注释用于阻止语句的执行。编译器执行代码时会忽略注释。注释是用户友好的,因为用户可以使用注释获得代码的解释。
句法:
// For single line comment
/* For block of lines comment
...
...
*/
返回值:在代码执行期间,注释被忽略。
示例 1:此示例说明了使用 // 的单行注释。
html
JavaScript Comments
Enter the First number:
Enter the Second number:
html
JavaScript Comments
Enter the First number :
Enter the Second number:
html
JavaScript Comments
Enter the First number:
Enter the Second number:
输出:
在点击按钮之前:
点击按钮后:
示例 2:此示例说明使用 /* ... */ 的多行注释
html
JavaScript Comments
Enter the First number :
Enter the Second number:
输出:
在点击按钮之前:
点击按钮后:
示例 3:此示例说明注释代码永远不会执行。
html
JavaScript Comments
Enter the First number:
Enter the Second number:
输出:
在点击按钮之前:
点击按钮后: