亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript中如何使用or循環語句

發布時間:2021-06-30 14:09:19 來源:億速云 閱讀:669 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關JavaScript中如何使用or循環語句的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

for

這大概是應用最廣的循環語句了吧,簡單實用,且大多數時候性能還是在線的,唯一的缺點大概就是太普通,沒有特色,導致很多人現在不愿用它。

const array = [4, 7, 9, 2, 6];
for (let index = 0; index < array.length; index++) {
    const element = array[index];
    console.log(element);
}
// 4, 7, 9, 2, 6

for...in

for...in 語句可以以任意順序遍歷一個對象的除 Symbol 以外的可枚舉屬性。

const temp = {name: "temp"};
function Apple() {
    this.color = 'red';
}

Apple.prototype = temp;

const obj = new Apple();

for (const prop in obj) {
    console.log(`obj.${ prop } = ${ obj[prop] }`);
}

// obj.color = red
// obj.name = temp

如果你只要考慮對象本身的屬性,而不是它的原型,那么使用  getOwnPropertyNames() 或執行 hasOwnProperty() 來確定某屬性是否是對象本身的屬性。

const temp = {name: "temp"};
function Apple() {
    this.color = 'red';
}

Apple.prototype = temp;

const obj = new Apple();

for (const prop in obj) {
    if (obj.hasOwnProperty(prop)) {
        console.log(`obj.${ prop } = ${ obj[prop] }`);
    }
}

// obj.color = red

當然,也可以用來遍歷數組。

const arr = [1, 2, 3, 4, 5];
for (const key in arr) {
    console.log(key)
}
// 0,1,2,3,4

使用 for...in 可以遍歷數組,但是會存在以下問題:

  1. index 索引為字符串型數字(注意,非數字),不能直接進行幾何運算。

  2. 遍歷順序有可能不是按照實際數組的內部順序(可能按照隨機順序)。

所以一般不建議使用 for...in 來遍歷數組。

for...of

for...of 語句在可迭代對象(包括 Array,Map,Set,String,TypedArray,arguments 對象等等)上創建一個迭代循環,調用自定義迭代鉤子,并為每個不同屬性的值執行語句。

const array = ['a', 'b', 'c'];
for (const element of array) {
    console.log(element);
}

// a
// b
// c

for...of 和 for...in 的區別:

  • for...in 語句以任意順序迭代對象的可枚舉屬性。

  • for...of 語句遍歷可迭代對象定義要迭代的數據。

Object.prototype.objCustom = function () { };
Array.prototype.arrCustom = function () { };

let iterable = [3, 5, 7];
iterable.foo = 'hello';

for (const key in iterable) {
    console.log(key); // logs 0, 1, 2, "foo", "arrCustom", "objCustom"
}
// 0, 1, 2, "foo", "arrCustom", "objCustom"

for (const key of iterable) {
    console.log(key);
}
// 3, 5, 7

使用 for...of 遍歷 Map 結構:

let nodes = new Map();
nodes.set("node1", "t1")
    .set("node2", "t2")
    .set("node3", "t3");

for (const [node, content] of nodes) {
    console.log(node, content);
}
// node1 t1
// node2 t2
// node3 t3

可以看出,使用 for...of 遍歷 Map 結構還是挺方便的,推薦使用!

總結

  1. 如果普通 for 循環用膩了,推薦使用 for...of 來替代。

  2. 這三種循環都可以使用 break 關鍵字來終止循環,也可以使用 continue 關鍵字來跳過本次循環。

  3. for...of 循環的適用范圍最大。

感謝各位的閱讀!關于“JavaScript中如何使用or循環語句”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博爱县| 囊谦县| 靖远县| 资阳市| 民丰县| 黄陵县| 曲阜市| 钟祥市| 杂多县| 大邑县| 台南市| 连城县| 红河县| 阿拉善左旗| 巨野县| 潮州市| 青海省| 化隆| 台江县| 西藏| 荃湾区| 柯坪县| 林芝县| 皋兰县| 阿荣旗| 彩票| 昂仁县| 香格里拉县| 正定县| 西宁市| 广州市| 昌图县| 历史| 弋阳县| 成安县| 乐至县| 台州市| 阿荣旗| 永川市| 进贤县| 洪雅县|