


I don’t know how you understand the “declaration” and “definition” of variables in the language.
My understanding is as follows:
“Declaring” a variable means just declaring it, while “defining” a variable means declaring it. , and assigned a value.
For example:
var name;//Just a statement
var num = 11;//Declaration and assignment, that is, it is defined
var password = "yangjiang";//Declaration and assignment, that is, it is defined
The following are a few Point summary:
Scope of variables: global and local. (Note: If you try to read the value of an undeclared variable, JavaScript will generate an error)
First point: In the case of using the var keyword to modify variables, if a local variable or function parameter is declared The name is the same as the name of a global variable,
then the global variable is effectively hidden.
For example:
var scope1 = "global"; //var modification
function checksScope(){
var scope1 = "local";//var modification
document.write(scope1);
}checksScope();//local
Second point: If you try to give a variable declared without the var keyword, then the implicitly declared variable is always created as a global variable, even if
the variable is only used within a function body (It will only take effect if the function is run.) Note that function nesting is not supported.
For example:
scope2 = "globalAAAAAA";/ / No var modification is used (js will declare it as a global variable by default)
function checkScopeA(){
scope2 = "localAAAAA"; // No var modification is used (js will declare it as a global variable by default)
document.write("
" scope2);
myscope = "myLocalAAAAA";//No var modification is used (js will declare it as a global variable by default)
document.write ("," myscope);
}
checkScopeA();//localAAAAA, myLocalAAAA *A
document.write("
" scope2);//localAAAAA *B
document.write("
" myscope);//myLocalAAAAA *C
If you comment out the code at *A in the above example,
For example:
scope2 = "globalAAAAA";//No var modification is used (js will declare it as a global variable by default)
function checkScopeA(){
scope2 = "localAAAAA";//No var modification is used (js will declare it as a global variable by default)
document. write("
" scope2);
myscope = "myLocalAAAAA";//No var modification is used (js will declare it as a global variable by default)
document.write("," myscope );
}
//checkScopeA(); *A
document.write("
" scope2);//globalAAAAA *B
document.write("" myscope);//An error occurred *C
Because the function checkScopeA is not executed, the output at *B is globalAAAAA;
Because the function checkScopeA is not executed, the variable myscope is not Declaration, if you try to read an undeclared variable, an error will occur.
The third point:
In JavaScript, function definitions can be nested. Since each function has its own local scope, it is possible to have several nested levels of local scopes.
For example:
var scope3 = "global scope" ; //A global variable is defined
function checkScopeB(){
var scope3 = "local scope"; //A local variable is defined, overriding the global variable scope3
function nested(){
var scope3 = "nested scope"; //A local variable is defined inside the function of the function
document.write("
" scope3); //nested scope
}
nested();
}
checkScopeB();//nested scope
The fourth point:
In javascript, there is no block-level scope, it is declared in the function All variables, no matter where they are declared, are declared throughout the function.
In JavaScript, there is no block-level scope. All variables defined in a function, no matter where they are defined, are defined throughout the function.
For example:
function test(o){//According to the above description: the scopes of the three variables i, j, and k in this function are the same.
var i = 0; //Variable i is defined throughout the function
if(typeof o == "object"){
var j = 0; //Variable j is defined throughout the function Defined, not just in the if statement block
for(var k=0;kdocument.write("
The value of k is: " k);
}
document.write("
The value of k outside the for loop: " k); //K at this time is still defined, k=10
}
document.write("
value of j:" j); //Variable j has been declared, but it may It has not been initialized because the parameters passed into the function may not be objects, and the if statement block will not be executed
}
This function is called in two ways:
Method 1: Pass Input object
test({});//Output result: Comment in the above example
Method 2: Pass nothing
test();//Output result: value of j: undefined
What I don’t understand is why the output result in the second method is undefined. What I guessed at the time was: The value of j: 0
Later, this book said:
Since local variables are declared (or defined) in the entire function body, this means that in the entire function body The global
variable with the same name is hidden in . Although local variables are declared (or defined) throughout the function body, they will not be initialized before the var statement is executed.
In this case, the output result of the call in the second method above is easier to explain. Since the variable j is defined in the entire function, and since the parameters passed into the function are empty, the if statement in the function body will not be executed, thus making the value of j undefined. (This is my understanding based on the sentence in the book above)
The following example is a better explanation:
var sssss = "Global variable";
function f(){
document.write ("
" sssss);//Output: undefined instead of outputting "global variables"
var sssss = "local variables";
document.write("
" sssss);//Output: local variable
}

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

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

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

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

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

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

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

PHP中的超全局变量是指在全局范围内都可以访问的变量,每个超全局变量都是一个关联数组,其中包含了PHP中的许多预定义变量,如$_GET、$_POST、$_COOKIE等等。这些超全局变量在Web开发中非常重要,因为它们提供了从用户请求中获取信息的重要途径,比如获取表单数据、获取URL参数等。本文将详细介绍PHP中常用的超全局变量,包括它们的作用、如何使用它们


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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
