JavaScript 函数作用域
在JavaScript中,各种作用域允许我们从代码的不同地方访问函数和变量。我们将在本教程中学习函数作用域。此外,我们还将探索JavaScript中不同类型的函数表达式。
作用域范围
当我们在JavaScript中创建一个新的函数时,它也为这个特定的函数创建了范围。这意味着,无论我们在函数中声明什么变量,或者在函数中定义嵌套函数,我们都只能在函数块中访问它。
如果我们试图从函数外访问定义在函数块内的变量,会出现引用错误。
语法
你可以按照下面的语法来定义函数并了解函数的范围。
function function_name(){
var variable = 10; // variable has a function scope.
}
let variable1 = variable;
// we can't access the variable here as it has a function scope.
在上面的语法中,你可以看到,我们不能在函数之外访问变量,因为函数块对它进行了限定。
示例 1
在这个例子中,我们创建了sample函数,并在里面定义了变量,这个函数有一个块范围。如果我们试图从函数之外访问定义在sample()函数中的变量,JavaScript会引发引用错误。
<html>
<body>
<h2>Function Scope in JavaScript</h2>
<div id="output"></div>
<script>
let output = document.getElementById("output");
// defining the function
function sample() {
// variables with function scope.
var website = "TutorialsPoint!";
var language = "JavaScript";
output.innerHTML +=
"You are learning the " +
language +
" programming language on " +
website +
" </br>";
}
sample();
// we can't access language and website variables here.
</script>
</body>
</html>
示例 2
在这个例子中,我们在样本函数中定义了nested_function()。我们不能在sample()函数之外调用_nested_funciton(),因为nested_function是在样本函数的范围内。
<html>
<body>
<h2>Function sSope in JavaScript</h2>
<div id="output"></div>
<script>
let output = document.getElementById("output");
function sample() {
// variables with function scope.
var num = 10;
function nested_function() {
// num variables also can be accessed here as nested_function() is
//inside the scope of sample function
var string = "JavaScript";
output.innerHTML +=
"The value of the num variable is " + num + "<br/>";
output.innerHTML +=
"The value of the string variable is " + string + "</br>";
}
// we can call the nested_function() inside the sample() function only
nested_function();
// we can't access the string variable here as the scope of
//nested_function bounds it
}
sample();
</script>
</body>
</html>
JavaScript中不同类型的函数
根据函数的定义和声明,有多种类型的函数,我们将在这里逐一学习它们。
正常功能
普通函数是所有JavaScript开发者普遍使用的函数。我们可以使用函数名后面的函数关键字来定义普通函数。
普通函数仍然被吊在函数当前范围的顶端。这意味着我们可以在定义函数之前调用它,但它应该在执行之后被定义。
语法
按照这个语法来定义正则函数。
function function_name(){
// function body
}
在上面的语法中,我们使用了function关键字来定义函数。function_name “是函数的名称,我们可以在大括号内写出函数主体的代码。
功能表达
函数表达式的工作方式也与普通函数类似。但不同的是,它没有任何名字,我们需要将函数表达式存储在变量内。我们可以使用标识符来调用我们存储它的函数。
JavaScript是一步一步地评估函数表达式的。所以,它没有被吊在作用域的顶端,所以我们不能在声明之前调用它。
语法
按照这个语法来定义函数表达式。
var function_identifier = function () {
// function body
}
function_identifier();
在上面的语法中,我们只用函数关键字定义了没有名称的函数,并将其存储在function_identifier变量中。另外,用户可以看到我们是如何使用function_identifier来调用函数表达式的。
箭头功能
箭头函数是在2015年的ES6中引入的,ES6是JavaScript的最后一个主要版本。它是一种更简短的语法,用来定义没有函数名的函数。另外,它被称为表达式和匿名函数,因为它不包含它们的标识。
语法
按照这个语法来定义箭头函数。
var function_identifier = (params) => {
// function body
}
function_identifier(arguments);
在上述语法中,我们将箭头函数表达式存储在function_identifier中。同时,我们在调用函数时,使用function_identifier变量传递了箭头函数内部的参数和参数。
闭合功能
我们可以在JavaScript中创建嵌套函数,并且可以通过子函数来访问父函数的变量。由于子函数包含访问父函数范围内定义的所有变量的权限,我们可以说子函数是封闭函数。
语法
function parent() {
// variables of the parent
var child = () => {
// variables of child
// access variables of the parent
};
return child;
}
var child = parent();
child();
在上面的语法中,我们可以在子函数内部访问父函数的所有变量,并且父函数返回子函数。所以,我们可以从父函数的外部间接调用子函数,即使它被定义在父函数的范围内。
构造函数
语法
我们可以使用构造函数来创建一个对象。
function constructor(property){
this.property = property
}
var string = new constructor("value");
在上述语法中,我们创建了构造函数的对象。
在本教程中,我们已经通过两个例子了解了嵌套函数的函数范围是如何工作的。此外,我们还了解了不同类型的函数。此外,还有一些其他类型的函数,如递归或回调函数,用户可以在互联网上探索。