search
HomeWeb Front-endJS TutorialDiscussion about js variable scope and this pointer_javascript skills

1. Variable scope: [P71]

This sentence is very insightful: "In ECMAScript, there are only two execution environments, the global environment and the function environment. Each function is An execution environment, including nested functions. In other words, even if variables are declared within a pair of braces, they are still accessible outside the braces." An example is given below:
Copy code The code is as follows:

for(var i=0; ivar num = 20; // Variables declared in the for statement
}
alert(num); // Calling variables outside the for statement can still get num The value

also works for exception statements:
Copy code The code is as follows:

try {
var num = 20; // Variable declared in try statement
a = b; // Cause an exception
} catch(e) {
alert( num); // Calling the variable in the catch statement will get 20
} finally {
alert(num); // Calling the variable in the finally statement will get 20
}
alert( num); // Calling a variable outside the try statement will get 20

In addition to the two statements demonstrated above, a pair of curly brackets cannot form an execution environment, for example:
Copy code The code is as follows:

{ var num = 1;3 }

2. this pointer: [P83]

List here the different meanings of this in ECMAScript:

(1) Used in the global execution environment this represents the Global object, which is the window object in the browser.

(2) When this is used in a function execution environment, the situation becomes a bit complicated. If the function does not have an obvious attribute as a non-window object, but only defines the function, regardless of whether the function is defined in another function, this in this function still represents the window object. If the function is explicitly used as a property of a non-window object, then this in the function represents this object. (Of course, you can use the apply or call function to replace the default this reference, see [P88] for details)

(3) When calling a function through the new operator, the function is treated as a constructor, and this points to the constructor The object created by the function.
Reference:
"Detailed Explanation of JavaScript Basics and Case Development" Tsinghua University Press
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP 函数的变量作用域是如何确定的?PHP 函数的变量作用域是如何确定的?Apr 16, 2024 pm 04:51 PM

PHP中的变量作用域分为局部(函数内)、全局(程序内可访问)、类范围(类实例内可访问)。global关键字可将局部变量声明为全局变量,static关键字可将局部变量声明为静态变量,在函数调用间保留其值。

深入理解 Golang 函数生命周期与变量作用域深入理解 Golang 函数生命周期与变量作用域Apr 19, 2024 am 11:42 AM

在Go中,函数生命周期包括定义、加载、链接、初始化、调用和返回;变量作用域分为函数级和块级,函数内的变量在内部可见,而块内的变量仅在块内可见。

Go语言中的变量作用域与生命周期Go语言中的变量作用域与生命周期Jun 01, 2023 pm 12:31 PM

Go语言是一种开源的静态类型语言,它具有简洁、高效、可靠等特点,越来越受到开发者的喜爱。在Go语言中,变量是程序中最基本的数据存储形式,变量的作用域和生命周期对于程序的正确性和效率十分重要。变量的作用域指的是变量的可见性和可访问性,即在何处可以访问这个变量。在Go语言中,变量的作用域分为全局变量和局部变量。全局变量是定义在函数外部的变量,它可以被整个程序任何

Golang函数如何定义变量作用域?Golang函数如何定义变量作用域?Apr 11, 2024 pm 12:27 PM

在Go中,函数作用域限制变量可见性,限定在变量声明所在的函数内:在函数内声明变量:varnametype=value作用域仅限于声明的代码块,其他函数或嵌套块无法访问这些变量

PHP 5.6变量作用域:如何使用static关键字定义静态变量PHP 5.6变量作用域:如何使用static关键字定义静态变量Jul 30, 2023 pm 11:02 PM

PHP5.6变量作用域:如何使用static关键字定义静态变量在PHP中,变量的作用域决定了变量的可见性和访问范围。静态变量是一种特殊类型的变量,它在函数调用之间保持其值不变。在PHP5.6及其以上版本中,可以使用static关键字在函数内部和类方法中定义静态变量。静态变量的特点是:静态变量的作用域仅限于声明它的函数或方法内部。静态变量在函数或方法调用之

如何在PHP中使用变量如何在PHP中使用变量May 20, 2023 pm 02:33 PM

PHP是一种非常流行的Web开发语言,它允许开发人员在服务器端创建动态Web应用程序。在PHP中,变量是一种基本的数据结构,用于存储值和数据。本文将介绍如何在PHP中使用变量。变量的基本语法在PHP中声明变量的语法非常简单。变量名以美元符号($)开头,后面跟着变量名。变量名可以是字母、数字或下划线的组合,但必须以字母或下划线开头。例如,下面的代码声明了一个名

Golang函数的变量作用域讲解Golang函数的变量作用域讲解May 18, 2023 am 10:30 AM

Golang是一种非常流行的编程语言,它以其高效的并发性能和简洁的语法风格在业界备受好评。作为一门强类型语言,Golang也是支持变量的类型声明和作用域控制的。在Golang中,变量作用域是一个非常重要的概念。它决定了在何处可以访问一个变量,以及变量在不同作用域中的生命周期。本文将为大家讲解Golang函数的变量作用域的相关知识。一、变量作用域的概念在Gol

Golang函数的变量作用域是什么Golang函数的变量作用域是什么Dec 22, 2023 pm 02:39 PM

Golang函数的变量作用域是指函数内部变量的可见性和生命周期。根据变量在函数中的位置和作用域,可以将变量分为三种类型:局部变量、参数变量和返回值变量。详细介绍:1、局部变量,是在函数内部定义的变量,只能在该函数内部使用,它们的作用域仅限于函数内部,包括函数的所有代码块和嵌套的代码块;2、参数变量,是函数接收的输入参数,可以在函数内部使用,它们的作用域仅限于函数内部等等。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

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.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)