gpt4 book ai didi

javascript - JavaScript 函数声明中的分号是否必要

转载 作者:行者123 更新时间:2023-11-30 07:41:58 25 4
gpt4 key购买 nike

是否有必要像下面这样在函数定义的末尾添加分号

function helloWorld() {
//some code
}; //note the semicolon here at the end is it ever necessary? Ever

我有一个 friend 发誓这是可选的。我认为它从来都不是可选的我从来没有读过任何关于它在函数末尾可选的内容。我从未见过有人这样做过“除了他”。分号是否可选。

var hellWorld = function (){

}; // the semicolon here it is optional because you are defining a variable this is OK and optional

最佳答案

分号分隔表达式。您可以在一个后添加任意数量的分号,因为它们会分隔空语句。

function() {
// Works.
};;;;;;;;;;;;;;;;;;;;;

函数后面的分号不是“可选的”,它是多余的。

至于实际上是可选的,它们之所以如此,是因为在大多数情况下,Javascript 会在换行符之前添加分号。这些你应该明确地写下来。您迟早会因为缺少自动分号而苦恼。

关于javascript - JavaScript 函数声明中的分号是否必要,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15164297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com