您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關如何使用javascript變量作用域,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
變量分為本地變量和全局變量兩種
我們看下面這個例子:
var myVariable = 'global'; myOtherVariable = 'global'; function myFunction(){ var myVariable = 'local'; return myVariable; } function myOtherFunction(){ myOtherVariable = 'local'; return myOtherVariable; } console.log(myVariable); //{行1} global console.log(myFunction()); //{行2} local console.log(myOtherVariable); //{行3} global console.log(myOtherFunction()); //{行4} local console.log(myOtherVariable); //{行5} local
行1輸出global,因為他是一個全局變量;
行2輸出local,因為myVariable在myFunction函數中聲明的本地變量,所以作用域僅在myFunction中;
行3輸出global,因為我們在第二行初始化了的全局變量myOtherVariable;
行4輸出local,myOtherFunction函數中,沒有關鍵詞var的修飾,所以這里引用全局變量myOtherVariable并將其復制loacl;
在行輸出local,這是因為在行4中已經修改了myOtherVariable的值;
關于如何使用javascript變量作用域就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。