這篇文章給大家分享的是有關(guān)JS中的for...of循環(huán)是什么的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
在孝南等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都做網(wǎng)站、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計制作按需搭建網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站建設(shè)公司,孝南網(wǎng)站建設(shè)費用合理。
for...of語句創(chuàng)建的循環(huán)可以遍歷對象。在ES6中引入的for...of可以替代另外兩種循環(huán)語句for...in和forEach(),而且這個新的循環(huán)語句支持新的迭代協(xié)議。for...of允許你遍歷可迭代的數(shù)據(jù)結(jié)構(gòu),比如數(shù)組、字符串、映射、集合等。
for (variable of iterable) { statement }
variable:每個迭代的屬性值被分配給variable
iterable:一個具有可枚舉屬性并且可以迭代的對象
我們使用一些示例來闡述。
array是簡單的列表,看上去像object。數(shù)組原型有多種方法,允許在其上執(zhí)行操作,比如遍歷。下面的示例使用for...of來對一個array進行遍歷操作:
const iterable = ['mini', 'mani', 'mo']; for (const value of iterable) { console.log(value); } // Output: // => mini // => mani // => mo
其結(jié)果就是打印出iterable
數(shù)組中的每一個值。
Map
對象持有key-value
對。對象和原始值可以當作一個key
或value
。Map
對象根據(jù)插入的方式遍歷元素。換句話說,for...of
在每次迭代中返回一個kay-value
對的數(shù)組。
const iterable = new Map([['one', 1], ['two', 2]]); for (const [key, value] of iterable) { console.log(`Key: ${key} and Value: ${value}`); } // Output: // => Key: one and Value: 1 // => Key: two and Value: 2
Set
對象允許你存儲任何類型的唯一值,這些值可以是原始值或?qū)ο蟆?code>Set對象只是值的集合。Set
元素的迭代是基于插入順序,每個值只能發(fā)生一次。如果你創(chuàng)建一個具有相同元素不止一次的Set
,那么它仍然被認為是單個元素。
const iterable = new Set([1, 1, 2, 2, 1]); for (const value of iterable) { console.log(value); } // Output: // => 1 // => 2
盡管我們創(chuàng)建的Set
有多個1
和2
,但遍歷輸出的只有1
和2
。
字符串用于以文本形式存儲數(shù)據(jù)。
const iterable = 'javascript'; for (const value of iterable) { console.log(value); } // Output: // => "j" // => "a" // => "v" // => "a" // => "s" // => "c" // => "r" // => "i" // => "p" // => "t"
在這里,對字符串執(zhí)行迭代,并打印出每個索引上(index
)的字符。
把一個參數(shù)對象看作是一個類似數(shù)組的對象,與傳遞給函數(shù)的參數(shù)相對應(yīng)。這是一個用例:
function args() { for (const arg of arguments) { console.log(arg); } } args('a', 'b', 'c'); // Output: // => a // => b // => c
你可能在想,到底發(fā)生了什么?正如我前面說過的,當調(diào)用函數(shù)時,參數(shù)會接收傳入args()
函數(shù)的任何參數(shù)。因此,如果我們將20
個參數(shù)傳遞給args()
函數(shù),我們將輸出20
個參數(shù)。
在上面的示例基礎(chǔ)上做一些調(diào)整,比如給args()
函數(shù),傳入一個對象、數(shù)組和函數(shù):
function fn(){ return 'functions'; } args('a', 'w3cplus', 'c',{'name': 'airen'},['a',1,3],fn()); // Output: // => "a" // => "w3cplus" // => "c" // => Object { // => "name": "airen" // => } // => Array [ // => "a", // => 1, // => 3 // => ] // => "functions"
生成器是一個函數(shù),它可以退出函數(shù),稍后重新進入函數(shù)。
function* generator(){ yield 1; yield 2; yield 3; }; for (const g of generator()) { console.log(g); } // Output: // => 1 // => 2 // => 3
function* 定義一個生成器函數(shù),該函數(shù)返回生成器對象。更多關(guān)于生成器相關(guān)的信息,可以點擊這里。
關(guān)閉迭代器
JavaScript中提供了四種已知的終止循環(huán)的方法:break
、continue
、return
和throw
。來看一個示例:
const iterable = ['mini', 'mani', 'mo']; for (const value of iterable) { console.log(value); break; } // Output: // => mini
在這個例子中,我們使用break
關(guān)鍵詞來終止一個循環(huán),并且只打印出一個mini
。
for...of
循環(huán)只能和迭代一起工作。但普通對象是不可迭代的。讓我們看看:
const obj = { fname: 'foo', lname: 'bar' }; for (const value of obj) { // TypeError: obj[Symbol.iterator] is not a function console.log(value); }
在這里,我們定義了一個普通對象obj
,當我們嘗試for...of
給obj
進行操作時,會報錯:TypeError: obj[Symbol.iterator] is not a function
。
我們可以把一個類似數(shù)組的對象轉(zhuǎn)找成一個數(shù)組。對象將具有length
屬性,它的元素可以被索引。來看一個示例:
const obj = { length: 3, 0: 'foo', 1: 'bar', 2: 'baz' }; const array = Array.from(obj); for (const value of array) { console.log(value); } // Output: // => foo // => bar // => baz
Array.from()
方法從類似數(shù)組(Array-lik)或迭代對象中創(chuàng)建了一個新的數(shù)組實例。
for...of
vs.for...in
for...in
在循環(huán)中將遍歷對象中所有可枚舉屬性。
Array.prototype.newArr = () => {}; Array.prototype.anotherNewArr = () => {}; const array = ['foo', 'bar', 'baz']; for (const value in array) { console.log(value); } // Outcome: // => 0 // => 1 // => 2 // => newArr // => anotherNewArr
for...in
不僅可以枚舉數(shù)組里聲明的值,它還可以從構(gòu)造函數(shù)的原型中尋找繼承的非枚舉屬性,比如上例中的newArr
和anotherNewArr
,并將它們打印出來。
for...of
可以對數(shù)組和對象等做更具體的操作,但并不表示包括所有對象。
注意:任何具有Symbol.iterator
屬性的元素都是可迭代的。
Array.prototype.newArr = function() {}; const array = ['foo', 'bar', 'baz']; for (const value of array) { console.log(value); } // Outcome: // => foo // => bar // => baz
for...of
不考慮構(gòu)造函數(shù)原型的不可枚舉屬性。它只需要查找可枚舉屬性并將其打印出來。
感謝各位的閱讀!關(guān)于JS中的for...of循環(huán)是什么就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
網(wǎng)站欄目:JS中的for...of循環(huán)是什么
標題URL:http://www.rwnh.cn/article48/igishp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、網(wǎng)站改版、網(wǎng)站排名、外貿(mào)建站、微信小程序、虛擬主機
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)