The role of block-level scope: resolve naming conflicts caused by too many global variables and functions. JavaScript will turn a blind eye to repeated declarations, causing errors in execution results. Block-level scope can solve this problem, allowing each developer to use his own variables without worrying about messing up the global scope.
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
What is block-level scope?
Any set of statements in a pair of curly braces ({ and }) belongs to a block. All variables defined in it are invisible outside the code block. We call it block-level action. Domains, such as for, while, if
and JavaScript does not have block-level scope (before the es6 standard came out, JavaScript did not have block-level scope), that is, define a variable in the JavaScript code block , the variable can still be used outside the code block, for example:
<script type="text/javascript"> var i=1; if(i==1){ var b=2; } alert(b);//输出2 function outputNumbers(count){ for(vari=0;i<count;i++){ alert(i); } alert(i); //计数 } </script>
In languages such as Java and C, the variable i will only be defined in the statement block of the for loop. Once the loop ends, the variable i will will be destroyed. But in JavaScript, the variable i is defined in the active object of outputNumbers(), so it can be accessed anywhere inside the function from the time it is defined.
Why should we implement block-level scope in JavaScript and what is its use?
Block-level scope can solve naming conflicts caused by too many global variables and functions, because JavaScript will turn a blind eye to repeated declarations (however, it will perform variable initialization in subsequent declarations), resulting in running results Something goes wrong, and you'll probably have to go to great lengths to catch it.
In a large application written by many developers, the use of private scopes allows each developer to use his or her own variables without worrying about messing up the global scope.
How JavaScript implements block-level scope
Although there is no block-level scope in js, closures/anonymous functions can be used to imitate block-level scope.
The syntax for anonymous functions in block-level scope (often called private scope) is as follows:
(function(){ //这里是块级作用域 })();
The above code defines and immediately calls an anonymous function. Enclosing a function declaration within a pair of parentheses indicates that it is actually a function expression. Another pair of parentheses immediately following it will immediately call this function.
An example of using anonymous functions to implement block-level scope in JavaScript
function outputNumbers(count){ (function(){ for(var i=0;i<count;i++){ alert(i); } })(); alert(i); //导致错误! }
In the example, any variables defined in the anonymous function will be destroyed at the end of execution. Therefore, the variable i can only be used within the loop and is destroyed after use. The variable count can be accessed in the private scope because this anonymous function is a closure, which can access all variables in the containing scope.
When can you use private scope
No matter where you are, as long as you need some variables temporarily, you can use private scope
[Related recommendations:javascript learning tutorial】
The above is the detailed content of What is the use of javascript block level scope?. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
