變數作用域
「一個變數的作用域表示這個變數存在的上下文。它指定了你可以存取哪些變數以及你是否有權限存取某個變數。」
變數作用域分為局部作用域和全域作用域。
局部變數(處於函數層級的作用域)
不像其他對面物件的程式語言(比方說C ,Java等等),javascript沒有區塊級作用域(被花括號包圍的);當是,javascript有擁有函數層級的作用域,也就是說,在一個函數內定義的變數只能在函數內部存取或是這個函數內部的函數存取(閉包除外,這個我們幾天後再寫個專題)。
函數層級作用域的一個例子:
var name = "Richard"; >
function showName () {
var name = "Jack"; // local variable; only accessible in this showName function
console.log (name); //> Jack
console.log (name); console.log (name); // Richard: the global variable
name = "Jack"; // this name is the global name variable and it is being"; // this name is the global name variable and it is being change to "Jack" here
console.log (name); // Jack: still the global variable
}
// Here, the name variable is the same global name variable, but it was changed in the if statement
console.log (name); // Jack
// 不要忘記使用var關鍵字
// 如果宣告一個變數的時候沒有使用var關鍵字,那麼這個變數將會是一個全域變數! // If you don't declare your local variables with the var keyword, they are part of the global scope
var name = "Michael Jackson"; var name = "Johnny Evers"; // Now name is always a local variable and it will not overwrite the global variable
function showCelebrityName () {
}
function showOrdinaryPersonName () {
name = "Johnny Evers";
showCelebrityName (); // Michael Jackson
// name is not a local variable, it simply changes the global name variable
showOrdinaryPersonName (); // Johnny Evers
showOrdinaryPersonName (); // Johnny Evers
/🎜>// global variable is now Johnny Evers, not the celebrity name anymore
showCelebrityName (); // Johnny Evers
// The solution is to declare your local variable with the var keys
console.log (name);
var name = "Paul";
function users () {
// Here, the name variable is local and it takes precedence over the same name variable in the global and it takes precedence over the same name variable in the global scope
"Jack";
// The search for name starts right here inside the function before it attempts to look outside the function in the global scope
console.log (name);
}
users (); // Jack
全域變數
程式碼如下:
如果一個變數第一次初始化/宣告的時候沒有使用var關鍵字,那麼他就會自動加入全域作用域。
複製程式碼
程式碼如下:
function showAge(){
//age初始化時沒有使用var關鍵字,所以它是全域變數
age = 20;
console.log(age);
}
showAge(); //20
console.log(age); //因為age是全域變量,所以這裡輸出的也是20
setTimeout中的函數是在全域作用域中執行的
setTimeout中的函數所處在於全域作用域中,所以函數中使用this關鍵字時,這個this關鍵字指向的是全域物件(Window):
var Value1 = 200;
var Value1 = 200;
;
var myObj = {
Value1 : 10,
Value2 : 1,
caleculated. this.Value1 * this.Value2);
}, 1000);
}
}
myObj.caleculatedIt(); //4000
為了避免對全域作用域的污染, 所以一般情況下我們盡可能少的宣告全域變數。
變數提升(Variable Hoisting)
程式碼如下:
function showconn () {
function showg () {
function show "First Name: " name);
var name = "Ford";
console.log ("Last Name: " name);
}
showName ();
// First Name: undefined
// Last Name: Ford
// The reason undefined prints first is because the local variable name was hoisted to the top of the function
/ heich is this local variable that get calls the first time.
// This is how the code is actually processed by the JavaScript engine:
function showName () {
> name; hoisted (note that is undefined at this point, since the assignment happens below)
console.log ("First Name: " name); // First Name: undefined
name = "Ford"; / / name is assigned a value
console.log ("Last Name: " name); // Last Name: Ford}
複製程式碼
程式碼如下:
// Both the variable and the function name the function
function myName () {console.log ("Rich");
}
// The function declaration overrides the variable name
consoles. log(typeof myName); // function
複製程式碼
程式碼如下:
// But in this example, the v.able signment function declaration
var myName = "Richard"; // This is the variable assignment (initialization) that overrides the function declaration.
function myName () {
console.log" ;
}console.log(typeof myName); // string 最後一點, 在嚴格模式下,如果沒有先宣告變數就給變數賦值將會報錯!
去掉重复并排序的方法: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(当前元素,索引,数组){...})”;该方法不处理空数组。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver Mac版
視覺化網頁開發工具

SublimeText3漢化版
中文版,非常好用

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中