我在剧本中找到了这篇文章
var name = project.SMALL_WIDTH//p.containerWidth() /// 2//project.WIDTH / 4
双重和三重斜线是什么意思?
答案 0 :(得分:7)
双斜线是评论。三重斜杠并不意味着什么特别,但它可能是在分裂之前添加的评论。
var a = 10 / 2;
var a = 10 /// 2;
答案 1 :(得分:7)
///
(最有可能)只是将评论的部分内容分开。但是,它们对代码没有任何影响。浏览器不会呈现JavaScript代码中//
之后的所有内容。你可以这样做,它仍然可以工作:
<script type="text/javascript">
// Hello! I'm a comment! ///////////////// these slashes don't do anything as they're in a comment.
// The double slashes tell the browser not to render it.
</script>
另外,您可以进行多行注释:
<script type="text/javascript">
/*
This is a
multiple
line
comment!
*/
</script>
如您所见,JavaScript中的多行注释与CSS注释非常相似。
答案 2 :(得分:0)
简短的回答:这些只是评论。放开他们。
长答案:在大多数编程语言中,在//
之后写在同一行代码上的任何内容都被视为单行注释。
还有一种称为多行注释的东西。
多行注释的开始和结束分别由/*
和*/
表示。
示例:
var a = 1; //This is a single line comment
var b = 2;
/*
This
is
a
multi-line
comment
*/