注释

通常,原始代码并不能传达你让一个程序传达给读者的所有信息,或者它以神秘的方式传达信息,人们可能不了解它。 在其他时候,你可能只想包含一些相关的想法,作为你程序的一部分。 这是注释的用途。

注释是程序中的一段文本,而在程序执行时计算机会完全忽略掉这些文本。JavaScript 中编写注释有两种方法,写单行注释时,使用两个斜杠字符开头,并在后面添加文本注释。

  1. let accountBalance = calculateBalance(account);
  2. // It's a green hollow where a river sings
  3. accountBalance.adjust();
  4. // Madly catching white tatters in the grass.
  5. let report = new Report();
  6. // Where the sun on the proud mountain rings:
  7. addToReport(accountBalance, report);
  8. // It's a little valley, foaming like light in a glass.

//注释只能到达行尾。 /**/之间的一段文本将被忽略,不管它是否包含换行符。 这对添加文件或程序块的信息块很有用。

  1. /*
  2. I first found this number scrawled on the back of one of
  3. an old notebook. Since then, it has often dropped by,
  4. showing up in phone numbers and the serial numbers of
  5. products that I've bought. It obviously likes me, so I've
  6. decided to keep it.
  7. */
  8. const myNumber = 11213;