摘要:關于深復制詳見其他博文方法數組簡單用法方法的參數翻譯說傳入一個回調函數里面有三個參數當前遍歷的元素當前元素的坐標以及遍歷的數組還有一個可選參數,在里面使用就是這個值如果未傳入,則是根據當前執行環境獲取。
Javascript 關于array的使用
來自: https://luoyangfu.com/detail/...
最近做項目經常會使用到數組,尤其在一個中臺系統中,數組是尤為常見的,而且前端數組可以實現任何有序數據結構,總結一下數組的方方面面。
使用 創建數組const arr = [] // 直接申明 const arr1 = new Array() // 使用示例構建 const arr2 = Array() const arr3 = Array.of(1, 2) // 從多個參數直接構建一個Array const arr4 = Array.from(likeArr) // 從一個類數組中創建一個數組
上面可以使用Array.from 進行數組深復制。關于深復制詳見其他博文
方法數組簡單用法array 方法的callback 參數
翻譯說: 傳入一個回調函數callback, callback 里面有三個參數當前遍歷的元素element, 當前元素的坐標index, 以及遍歷的數組array. 還有一個可選參數,在find里面使用this就是這個值thisArg如果未傳入,則是根據當前執行環境獲取this。
const a = [1, 2, 4] const value = a.find(current => current > 3) console.log(value) // 4參數
參數看callback參數,返回結果數組中的符合條件的值,如果是對象則返回對象引用。
返回一個array中的值,如果是對象或者數組則返回引用,直接修改會改動數組中的值Array.prototype.forEach
遍歷這個數組,但是在forEach中不可以使用break、continue繼續中斷后續循環, 如果使用return 后將不再執行return后的語句,也不影響forEach的循環如下圖:
復制數組,可以繼續數組淺拷貝(深拷貝和淺拷貝關注后續)
slice 會復制最外層,相似的比如
使用對象展開符號...
slice 傳入兩個可選參數begin和 end,返回一個新的數組。如下:
返回一個新數組可以進行數組的鏈式操作Array.prototype.concat
連接一個數組或者多個值:
連接一個數組:
返回一個新數組,可以進行數組的鏈式操作Array.prototype.from
通過已存在數組進行淺拷貝或者一個類數組的對象轉化成數組:
類數組轉化:
最明顯的類數組,例如查詢頁面dom:
現在是NodeList,轉化成數組:
這樣就可以使用所有的數組操作
返回的是數組就可以鏈式使用方法了Array.prototype.push
將一個值推入到數組的尾端,并返回新的數組長度。
Array.prototype.pop將一個值從數組的尾端移除,并返回移除數組中的那個值.
pop 是 push 的反操作。使用push和pop可以實現棧數據結構(先進后出)
Array.prototype.shift將一個數據從數組的頭部移除。并返回移除的值
講一個數據添加到數組的頭部,并返回新數組的長度
使用shift和unshift 可以實現隊列的數據結構(先進先出)
Array.prototype.indexOf獲取數組中某個值的坐標,只能是字面量變量數組,不適用多維數組和多對象數組
有一個可選參數fromIndex,從fromIndex可是搜索
數組進階操作Array.prototype.map
傳入一個回調函數,會對數組每個參數執行callback:
polyfill(mdn)
// Production steps of ECMA-262, Edition 5, 15.4.4.19 // Reference: http://es5.github.io/#x15.4.4.19 if (!Array.prototype.map) { Array.prototype.map = function(callback/*, thisArg*/) { var T, A, k; if (this == null) { throw new TypeError("this is null or not defined"); } // 1. Let O be the result of calling ToObject passing the |this| // value as the argument. var O = Object(this); // 2. Let lenValue be the result of calling the Get internal // method of O with the argument "length". // 3. Let len be ToUint32(lenValue). var len = O.length >>> 0; // 4. If IsCallable(callback) is false, throw a TypeError exception. // See: http://es5.github.com/#x9.11 if (typeof callback !== "function") { throw new TypeError(callback + " is not a function"); } // 5. If thisArg was supplied, let T be thisArg; else let T be undefined. if (arguments.length > 1) { T = arguments[1]; } // 6. Let A be a new array created as if by the expression new Array(len) // where Array is the standard built-in constructor with that name and // len is the value of len. A = new Array(len); // 7. Let k be 0 k = 0; // 8. Repeat, while k < len while (k < len) { var kValue, mappedValue; // a. Let Pk be ToString(k). // This is implicit for LHS operands of the in operator // b. Let kPresent be the result of calling the HasProperty internal // method of O with argument Pk. // This step can be combined with c // c. If kPresent is true, then if (k in O) { // i. Let kValue be the result of calling the Get internal // method of O with argument Pk. kValue = O[k]; // ii. Let mappedValue be the result of calling the Call internal // method of callback with T as the this value and argument // list containing kValue, k, and O. mappedValue = callback.call(T, kValue, k, O); // iii. Call the DefineOwnProperty internal method of A with arguments // Pk, Property Descriptor // { Value: mappedValue, // Writable: true, // Enumerable: true, // Configurable: true }, // and false. // In browsers that support Object.defineProperty, use the following: // Object.defineProperty(A, k, { // value: mappedValue, // writable: true, // enumerable: true, // configurable: true // }); // For best browser support, use the following: A[k] = mappedValue; } // d. Increase k by 1. k++; } // 9. return A return A; }; }Array.prototype.reduce
需要兩個參數,一個callback參數,一個累加初始值.
callback參數:
callback參數有三個累加的值acc, 當前值cv, 當前坐標cvIdx, 當前數組arr
用法:
求和:
返回值根據初始化的值來變化,可能是數組,對象,數字,字符串等等。
polyfill(mdn)
// Production steps of ECMA-262, Edition 5, 15.4.4.21 // Reference: http://es5.github.io/#x15.4.4.21 // https://tc39.github.io/ecma262/#sec-array.prototype.reduce if (!Array.prototype.reduce) { Object.defineProperty(Array.prototype, "reduce", { value: function(callback /*, initialValue*/) { if (this === null) { throw new TypeError( "Array.prototype.reduce " + "called on null or undefined" ); } if (typeof callback !== "function") { throw new TypeError( callback + " is not a function"); } // 1. Let O be ? ToObject(this value). var o = Object(this); // 2. Let len be ? ToLength(? Get(O, "length")). var len = o.length >>> 0; // Steps 3, 4, 5, 6, 7 var k = 0; var value; if (arguments.length >= 2) { value = arguments[1]; } else { while (k < len && !(k in o)) { k++; } // 3. If len is 0 and initialValue is not present, // throw a TypeError exception. if (k >= len) { throw new TypeError( "Reduce of empty array " + "with no initial value" ); } value = o[k++]; } // 8. Repeat, while k < len while (k < len) { // a. Let Pk be ! ToString(k). // b. Let kPresent be ? HasProperty(O, Pk). // c. If kPresent is true, then // i. Let kValue be ? Get(O, Pk). // ii. Let accumulator be ? Call( // callbackfn, undefined, // ? accumulator, kValue, k, O ?). if (k in o) { value = callback(value, o[k], k, o); } // d. Increase k by 1. k++; } // 9. Return accumulator. return value; } }); }Array.prototype.fill
對數組繼續填充,傳入三個變量, 填充值value, 填充開始位置start, 填充結束位置end
返回修改后的數組可以繼續操作
polyfill(來自mdn)
if (!Array.prototype.fill) { Object.defineProperty(Array.prototype, "fill", { value: function(value) { // Steps 1-2. if (this == null) { throw new TypeError("this is null or not defined"); } var O = Object(this); // Steps 3-5. var len = O.length >>> 0; // Steps 6-7. var start = arguments[1]; var relativeStart = start >> 0; // Step 8. var k = relativeStart < 0 ? Math.max(len + relativeStart, 0) : Math.min(relativeStart, len); // Steps 9-10. var end = arguments[2]; var relativeEnd = end === undefined ? len : end >> 0; // Step 11. var final = relativeEnd < 0 ? Math.max(len + relativeEnd, 0) : Math.min(relativeEnd, len); // Step 12. while (k < final) { O[k] = value; k++; } // Step 13. return O; } }); }Array.prototype.some
判斷是否存在滿足回調函數返回的條件,回調函數條件如上callback 參數,返回值是true/false
polyfill(mdn)
if (!Array.prototype.some) { Array.prototype.some = function(fun/*, thisArg*/) { "use strict"; if (this == null) { throw new TypeError("Array.prototype.some called on null or undefined"); } if (typeof fun !== "function") { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; var thisArg = arguments.length >= 2 ? arguments[1] : void 0; for (var i = 0; i < len; i++) { if (i in t && fun.call(thisArg, t[i], i, t)) { return true; } } return false; }; }Array.prototype.every
判斷數組中每一個是否滿足回調函數滿足的條件,返回true/false
polyfill(mdn)
if (!Array.prototype.every) { Array.prototype.every = function(callbackfn, thisArg) { "use strict"; var T, k; if (this == null) { throw new TypeError("this is null or not defined"); } // 1. Let O be the result of calling ToObject passing the this // value as the argument. var O = Object(this); // 2. Let lenValue be the result of calling the Get internal method // of O with the argument "length". // 3. Let len be ToUint32(lenValue). var len = O.length >>> 0; // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. if (typeof callbackfn !== "function") { throw new TypeError(); } // 5. If thisArg was supplied, let T be thisArg; else let T be undefined. if (arguments.length > 1) { T = thisArg; } // 6. Let k be 0. k = 0; // 7. Repeat, while k < len while (k < len) { var kValue; // a. Let Pk be ToString(k). // This is implicit for LHS operands of the in operator // b. Let kPresent be the result of calling the HasProperty internal // method of O with argument Pk. // This step can be combined with c // c. If kPresent is true, then if (k in O) { // i. Let kValue be the result of calling the Get internal method // of O with argument Pk. kValue = O[k]; // ii. Let testResult be the result of calling the Call internal method // of callbackfn with T as the this value and argument list // containing kValue, k, and O. var testResult = callbackfn.call(T, kValue, k, O); // iii. If ToBoolean(testResult) is false, return false. if (!testResult) { return false; } } k++; } return true; }; }Array.prototype.filter
過濾滿足回調函數返回值的的數組,返回值是一個數組,如果沒有滿足的則是空數組:
polyfill(mdn)
if (!Array.prototype.filter) { Array.prototype.filter = function(fun/*, thisArg*/) { "use strict"; if (this === void 0 || this === null) { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; if (typeof fun !== "function") { throw new TypeError(); } var res = []; var thisArg = arguments.length >= 2 ? arguments[1] : void 0; for (var i = 0; i < len; i++) { if (i in t) { var val = t[i]; // NOTE: Technically this should Object.defineProperty at // the next index, as push can be affected by // properties on Object.prototype and Array.prototype. // But that method"s new, and collisions should be // rare, so use the more-compatible alternative. if (fun.call(thisArg, val, i, t)) { res.push(val); } } } return res; }; }Array.prototype.includes
數組中是否包含某個值:
polyfill(mdn)
// https://tc39.github.io/ecma262/#sec-array.prototype.includes if (!Array.prototype.includes) { Object.defineProperty(Array.prototype, "includes", { value: function(searchElement, fromIndex) { // 1. Let O be ? ToObject(this value). if (this == null) { throw new TypeError(""this" is null or not defined"); } var o = Object(this); // 2. Let len be ? ToLength(? Get(O, "length")). var len = o.length >>> 0; // 3. If len is 0, return false. if (len === 0) { return false; } // 4. Let n be ? ToInteger(fromIndex). // (If fromIndex is undefined, this step produces the value 0.) var n = fromIndex | 0; // 5. If n ≥ 0, then // a. Let k be n. // 6. Else n < 0, // a. Let k be len + n. // b. If k < 0, let k be 0. var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0); function sameValueZero(x, y) { return x === y || (typeof x === "number" && typeof y === "number" && isNaN(x) && isNaN(y)); } // 7. Repeat, while k < len while (k < len) { // a. Let elementK be the result of ? Get(O, ! ToString(k)). // b. If SameValueZero(searchElement, elementK) is true, return true. // c. Increase k by 1. if (sameValueZero(o[k], searchElement)) { return true; } k++; } // 8. Return false return false; } }); }Array.prototype.sort
根據回調函數進行排序,參數:
當什么都不傳遞的時候,則根據每個字符的Unicode的值
傳入一個比較函數的時候:
這里描述幾種情況:
如果函數返回小于0,排序前一個值a放到一個小的下標
如果函數返回返回0,則a和b的位置不變
返回值大于0,則排序的后一個值b放到小的下標
比較函數總是要返回相似的值,不一樣的值導致返回的結果未必是預料的。
Array.prototype.reverse數組的反轉,直接數組頭尾交換:
更換后數組,和變換前數組是同一個對象,同sort函數。
傳入多個變量,將其轉換成新的數組:
map 可以會數組中每個值進行相同函數操作,例如:
將一個變量中所有id取出來
var persons = [ { id: 3 }, { id: 4 }] const ids = persons.map(p => p.id)使用reduce 鏈式操作
所謂鏈式操作,就是直接返回數組直接繼續使用數組中方法,不熟悉不推薦使用,代碼維護性下降
如下:
const idsStr = persons.map(p => p.id).join(",") // 3,4(join返回字符串,可以繼續使用字符串方法)數組關于Promise的sao操作
看如下代碼:
Promise.all(ids.map(id => requestPersonById(id)).then(persons => { // persons 就是每個id請求的人 })數組和Set的故事
去重操作:
const arr = [...new Set(duplicateArr)]
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/96492.html
摘要:對于復雜類型它的每個實例都有屬性。當檢測實例時優于因為能檢測這段代碼是從的。補充以下結果,發現第三種方法也能正確判斷出。我們知道結果是那如何判斷兩個變量呢比較兩個變量,使用的即可。 Javascript中數據類型分為兩種: 簡單數據類型:Undefined, NULL, Boolean, Number, String 復雜數據類型:Object 接下來我們就來看看怎么做數據類型判別...
摘要:前集回顧我們在開開心心做幾道機試題中吐了槽,也順勢展開了機試題之旅,本章我們暫時壓抑自己的吐槽之心,繼續就題目前行。其實和都是構造函數,可以直接調用的。請嘗試完成一個解析模塊本題考查對的理解,各部分都是什么意思。 前集回顧 我們在開開心心做幾道JavaScript機試題 - 01中吐了槽,也順勢展開了機試題之旅,本章我們暫時壓抑自己的吐槽之心,繼續就題目前行。仍然希望對各位正確認識Ja...
摘要:理解的函數基礎要搞好深入淺出原型使用原型模型,雖然這經常被當作缺點提及,但是只要善于運用,其實基于原型的繼承模型比傳統的類繼承還要強大。中文指南基本操作指南二繼續熟悉的幾對方法,包括,,。商業轉載請聯系作者獲得授權,非商業轉載請注明出處。 怎樣使用 this 因為本人屬于偽前端,因此文中只看懂了 8 成左右,希望能夠給大家帶來幫助....(據說是阿里的前端妹子寫的) this 的值到底...
摘要:與稀疏數組對立的為密集數組,密集數組的索引會被持續的創建,并且其元素的數量等于其長度。創建一個長度為的數組,并初始化了個元素使用構造函數創建數組對象的時候,關鍵字是可以省略的。另外使用和刪除元素是影響數組的長度的。 說明:本文只總結了JavaScript數組在web端的行為,不包括NodeJs端的行為。本文不涉及類型化數組(TypedArray)的討論、總結。 一、什么是數組 數組的定...
摘要:函數柯里化關于函數柯里化的問題最初是在忍者秘籍中講閉包的部分中看到的,相信很多同學見過這樣一道和柯里化有關的面試題實現一個函數,使得如下斷言能夠能夠通過簡單說就是實現一個求值函數,能夠將所有參數相加得出結果。方法返回一個表示該對象的字符串。 函數柯里化 ??關于函數柯里化的問題最初是在《JavaScript忍者秘籍》中講閉包的部分中看到的,相信很多同學見過這樣一道和柯里化有關的面試題:...
閱讀 2796·2021-11-16 11:44
閱讀 969·2021-10-09 09:58
閱讀 4489·2021-09-24 09:48
閱讀 4252·2021-09-23 11:56
閱讀 2408·2021-09-22 15:48
閱讀 1892·2021-09-07 10:07
閱讀 3204·2021-08-31 09:46
閱讀 504·2019-08-30 15:56