探索 JavaScript 函数作用域和不同类型的 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
在这个示例中,我们在 sample 函数内部定义了 nested_function()。我们不能在 sample() 函数外部调用 nested_funciton(),因为 nested_function 位于 sample 函数的作用域内。
<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 function_name(){ // function body }
在上述语法中,我们使用了 function 关键字来定义函数。“function_name”是函数的名称,我们可以在花括号内编写函数体的代码。
函数表达式
函数表达式的工作方式与普通函数类似。然而,不同之处在于它没有任何名称,我们需要将函数表达式存储在变量中。我们可以使用存储函数表达式的标识符来调用函数。
JavaScript 逐步骤评估函数表达式。因此,它不会被提升到作用域的顶部,所以我们不能在声明之前调用它。
语法
请按照此语法定义函数表达式。
var function_identifier = function () { // function body } function_identifier();
在上述语法中,我们仅使用 function 关键字定义了没有名称的函数,并将其存储在 function_identifier 变量中。此外,用户可以看到我们如何使用 function_identifier 来调用函数表达式。
箭头函数
箭头函数是在 2015 年 JavaScript 的最后一个主要修订版 ES6 中引入的。它是一种更简短的语法,用于在没有函数名称的情况下定义函数。它也被称为表达式和匿名函数,因为它不包含其标识。
语法
请按照此语法定义箭头函数。
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");
在上述语法中,我们创建了构造函数的对象。
在本教程中,我们通过两个示例学习了嵌套函数的函数作用域是如何工作的。此外,我们还学习了不同类型的函数。此外,还有一些其他类型的函数,例如递归函数或回调函数,用户可以在互联网上探索。