JS注释
时间:2020-02-23 14:33:48 来源:igfitidea点击:
在本教程中,我们将学习JavaScript注释。
像大多数编程语言(如C ++,Java,PHP,C#等)一样,JavaScript也具有注释-单行注释和多行注释。
单行注释
我们使用" //"两个正斜杠在JavaScript中创建单行注释。
在下面的示例中,我们创建了一行注释。
//this is a single line comment console.log("Hello World!"); //this will console log "Hello World!" text
多行注释
在JavaScript中,我们使用/*
来启动,而使用* /
来终止多行注释。
在以下示例中,我们创建了多行注释。
//this is a single line comment /** * in the following code we are going to * console log "Hello World!" text */ console.log("Hello World!");
为什么要使用注释?
我们在代码中使用注释来写一些注释或者阻止一段代码执行。
在下面的示例中,我们同时使用单行注释和多行注释在代码中创建注释,以便任何阅读该代码的人都可以理解其目的。
//create two variables a and b var a, b; //setting value of a and b a = 10; b = 20; /** * computing the sum of the two variables * and using console log to display the result */ console.log(a+b); //this will print 30
在下面的示例中,我们同时使用单行注释和多行注释,以防止执行某些代码。
console.log(1); //print 1 console.log(2); //print 2 //following line will note execute as it is commented out using single line comment //console.log(3); //following code commented out as well using multi line comment /* console.log(4); console.log(5); console.log(6); */ console.log(7); //print 7