91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

函數式array邏輯判斷的函數有哪些

發布時間:2021-10-15 16:24:12 來源:億速云 閱讀:104 作者:iii 欄目:web開發

這篇文章主要講解了“函數式array邏輯判斷的函數有哪些”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“函數式array邏輯判斷的函數有哪些”吧!

1.1 array.filter() 概述

filter() 方法創建一個新數組, 其包含通過所提供函數實現的測試的所有元素。

語法

var newArray = arr.filter(callback(element[, index[, array]])[, thisArg])

參數

callback 用來測試數組的每個元素的函數。返回 true 表示該元素通過測試,保留該元素,false 則不保留。它接受以下三個參數:

- element 數組中當前正在處理的元素。

- index可選 正在處理的元素在數組中的索引。

- array可選 調用了 filter 的數組本身。

thisArg可選 執行 callback 時,用于 this 的值。

返回值

一個新的、由通過測試的元素組成的數組,如果沒有任何數組元素通過測試,則返回空數組。

1.2 array.filter() 描述

filter 為數組中的每個元素調用一次 callback 函數,并利用所有使得 callback 返回 true 或等價于 true  的值的元素創建一個新數組。callback 只會在已經賦值的索引上被調用,對于那些已經被刪除或者從未被賦值的索引不會被調用。那些沒有通過 callback  測試的元素會被跳過,不會被包含在新數組中。

callback 被調用時傳入三個參數:

  1. 鴻蒙官方戰略合作共建——HarmonyOS技術社區

  2. 元素的值

  3. 元素的索引

  4. 被遍歷的數組本身

如果為 filter 提供一個 thisArg 參數,則它會被作為 callback 被調用時的 this 值。否則,callback 的 this  值在非嚴格模式下將是全局對象,嚴格模式下為 undefined。callback 函數最終觀察到的 this 值是根據通常函數所看到的  "this"的規則確定的。

filter 不會改變原數組,它返回過濾后的新數組。

filter 遍歷的元素范圍在第一次調用 callback 之前就已經確定了。在調用 filter 之后被添加到數組中的元素不會被 filter  遍歷到。如果已經存在的元素被改變了,則他們傳入 callback 的值是 filter 遍歷到它們那一刻的值。被刪除或從來未被賦值的元素不會被遍歷到。

案例 01 篩選排除所有較小的值

下例使用 filter 創建了一個新數組,該數組的元素由原數組中值大于 10 的元素組成。

function isBigEnough(element) {   return element >= 10; } var filtered = [12, 5, 8, 130, 44].filter(isBigEnough); // filtered is [12, 130, 44]

 案例 02 過濾 JSON 中的無效條目

以下示例使用 filter() 創建具有非零 id 的元素的 json。

var arr = [   { id: 15 },   { id: -1 },   { id: 0 },   { id: 3 },   { id: 12.2 },   { },   { id: null },   { id: NaN },   { id: 'undefined' } ];  var invalidEntries = 0;  function isNumber(obj) {   return obj !== undefined && typeof(obj) === 'number' && !isNaN(obj); }  function filterByID(item) {   if (isNumber(item.id) && item.id !== 0) {     return true;   }   invalidEntries++;   return false; }  var arrByID = arr.filter(filterByID);  console.log('Filtered Array\n', arrByID); // Filtered Array // [{ id: 15 }, { id: -1 }, { id: 3 }, { id: 12.2 }]  console.log('Number of Invalid Entries = ', invalidEntries); // Number of Invalid Entries = 5

 案例 03 在數組中搜索

下例使用 filter() 根據搜索條件來過濾數組內容。

var fruits = ['apple', 'banana', 'grapes', 'mango', 'orange'];  /**  * Array filters items based on search criteria (query)  */ function filterItems(query) {   return fruits.filter(function(el) {       return el.toLowerCase().indexOf(query.toLowerCase()) > -1;   }) }  console.log(filterItems('ap')); // ['apple', 'grapes'] console.log(filterItems('an')); // ['banana', 'mango', 'orange']

 案例 04 ES2015 實現

const fruits = ['apple', 'banana', 'grapes', 'mango', 'orange'];  /**  * Array filters items based on search criteria (query)  */ const filterItems = (query) => {   return fruits.filter((el) =>     el.toLowerCase().indexOf(query.toLowerCase()) > -1   ); }  console.log(filterItems('ap')); // ['apple', 'grapes'] console.log(filterItems('an')); // ['banana', 'mango', 'orang

 2.1 array.find() 概述

find() 方法返回數組中滿足提供的測試函數的第一個元素的值。否則返回 undefined。

const array1 = [5, 12, 8, 130, 44];  const found = array1.find(element => element > 10);  console.log(found); // expected output: 12

另請參見 3.1 findIndex() 方法,它返回數組中找到的元素的索引,而不是其值。

如果你需要找到一個元素的位置或者一個元素是否存在于數組中,使用Array.prototype.indexOf() 或  Array.prototype.includes()。

語法

arr.find(callback[, thisArg])

參數

callback 在數組每一項上執行的函數,接收 3 個參數:

  • element 當前遍歷到的元素。

  • index可選 當前遍歷到的索引。

  • array可選 數組本身。

thisArg可選 執行回調時用作this 的對象。

返回值

數組中第一個滿足所提供測試函數的元素的值,否則返回 undefined。

2.2 array.find() 描述

find方法對數組中的每一項元素執行一次 callback 函數,直至有一個 callback 返回  true。當找到了這樣一個元素后,該方法會立即返回這個元素的值,否則返回 undefined。注意 callback 函數會為數組中的每個索引調用即從 0 到  length - 1,而不僅僅是那些被賦值的索引,這意味著對于稀疏數組來說,該方法的效率要低于那些只遍歷有值的索引的方法。

callback函數帶有3個參數:當前元素的值、當前元素的索引,以及數組本身。

如果提供了 thisArg參數,那么它將作為每次 callback函數執行時的this ,如果未提供,則使用 undefined。

find方法不會改變數組。

在第一次調用 callback函數時會確定元素的索引范圍,因此在 find方法開始執行之后添加到數組的新元素將不會被  callback函數訪問到。如果數組中一個尚未被callback函數訪問到的元素的值被callback函數所改變,那么當callback函數訪問到它時,它的值是將是根據它在數組中的索引所訪問到的當前值。被刪除的元素仍舊會被訪問到,但是其值已經是undefined了。

案例 01 用對象的屬性查找數組里的對象

var inventory = [     {name: 'apples', quantity: 2},     {name: 'bananas', quantity: 0},     {name: 'cherries', quantity: 5} ];  function findCherries(fruit) {     return fruit.name === 'cherries'; }  console.log(inventory.find(findCherries)); // { name: 'cherries', quantity: 5 }

 案例 02 尋找數組中的質數

下面的例子展示了如何從一個數組中尋找質數(如果找不到質數則返回undefined)

function isPrime(element, index, array) {   var start = 2;   while (start <= Math.sqrt(element)) {     if (element % start++ < 1) {       return false;     }   }   return element > 1; }  console.log([4, 6, 8, 12].find(isPrime)); // undefined, not found console.log([4, 5, 8, 12].find(isPrime)); // 5

當在回調中刪除數組中的一個值時,當訪問到這個位置時,其傳入的值是 undefined:

// Declare array with no element at index 2, 3 and 4 var a = [0,1,,,,5,6];  // Shows all indexes, not just those that have been assigned values a.find(function(value, index) {   console.log('Visited index ' + index + ' with value ' + value); });  // Shows all indexes, including deleted a.find(function(value, index) {    // Delete element 5 on first iteration   if (index == 0) {     console.log('Deleting a[5] with value ' + a[5]);     delete a[5];  // 注:這里只是將a[5]設置為undefined,可以試試用a.pop()刪除最后一項,依然會遍歷到被刪的那一項   }   // Element 5 is still visited even though deleted   console.log('Visited index ' + index + ' with value ' + value); });

 3.1 array.findIndex() 概述

findIndex()方法返回數組中滿足提供的測試函數的第一個元素的索引。若沒有找到對應元素則返回-1。

var inventory = [     {name: 'apples', quantity: 2},     {name: 'bananas', quantity: 0},     {name: 'cherries', quantity: 5} ];  function findCherries(fruit) {     return fruit.name === 'cherries'; }  console.log(inventory.find(findCherries)); // { name: 'cherries', quantity: 5 }

另請參見 1.1 find() 方法,它返回數組中找到的元素的值,而不是其索引。

語法

arr.findIndex(callback[, thisArg])

參數

callback 針對數組中的每個元素, 都會執行該回調函數, 執行時會自動傳入下面三個參數:

- element 當前元素。

- index 當前元素的索引。

- array 調用findIndex的數組。

thisArg 可選。執行callback時作為this對象的值.

返回值

數組中通過提供測試函數的第一個元素的索引。否則,返回-1

3.2 array.findIndex() 描述

findIndex方法對數組中的每個數組索引0..length-1(包括)執行一次callback函數,直到找到一個callback函數返回真實值(強制為true)的值。如果找到這樣的元素,findIndex會立即返回該元素的索引。如果回調從不返回真值,或者數組的length為0,則findIndex返回-1。  與某些其他數組方法(如Array#some)不同,在稀疏數組中,即使對于數組中不存在的條目的索引也會調用回調函數。

回調函數調用時有三個參數:元素的值,元素的索引,以及被遍歷的數組。

如果一個 thisArg 參數被提供給 findIndex,  它將會被當作this使用在每次回調函數被調用的時候。如果沒有被提供,將會使用undefined。

findIndex不會修改所調用的數組。

在第一次調用callback函數時會確定元素的索引范圍,因此在findIndex方法開始執行之后添加到數組的新元素將不會被callback函數訪問到。如果數組中一個尚未被callback函數訪問到的元素的值被callback函數所改變,那么當callback函數訪問到它時,它的值是將是根據它在數組中的索引所訪問到的當前值。被刪除的元素仍然會被訪問到。

案例 01 查找數組中首個質數元素的索引

以下示例查找數組中素數的元素的索引(如果不存在素數,則返回-1)。

function isPrime(element, index, array) {   var start = 2;   while (start <= Math.sqrt(element)) {     if (element % start++ < 1) {       return false;     }   }   return element > 1; }  console.log([4, 6, 8, 12].find(isPrime)); // undefined, not found console.log([4, 5, 8, 12].find(isPrime)); // 5

 4.1 array.includes() 概述

當2.1的array.find查找具體的元素的時候,就是array.include。

includes() 方法用來判斷一個數組是否包含一個指定的值,根據情況,如果包含則返回 true,否則返回false。

語法

arr.includes(valueToFind[, fromIndex])

參數

valueToFind

需要查找的元素值。

Note: 使用 includes()比較字符串和字符時是區分大小寫。

fromIndex 可選 從fromIndex 索引處開始查找 valueToFind。如果為負值,則按升序從 array.length +  fromIndex 的索引開始搜 (即使從末尾開始往前跳 fromIndex 的絕對值個索引,然后往后搜尋)。默認為 0。

返回值

返回一個布爾值 Boolean ,如果在數組中找到了(如果傳入了 fromIndex ,表示在 fromIndex 指定的索引范圍中找到了)則返回  true 。

案例 00 簡單示例

[1, 2, 3].includes(2);     // true [1, 2, 3].includes(4);     // false [1, 2, 3].includes(3, 3);  // false [1, 2, 3].includes(3, -1); // true [1, 2, NaN].includes(NaN); // true

 案例 01 fromIndex 大于等于數組長度

如果 fromIndex 大于等于數組的長度,則會返回 false,且該數組不會被搜索。

var arr = ['a', 'b', 'c'];  arr.includes('c', 3);   // false arr.includes('c', 100); // false

 案例 02 計算出的索引小于 0

如果 fromIndex 為負值,計算出的索引將作為開始搜索searchElement的位置。如果計算出的索引小于 0,則整個數組都會被搜索。

// array length is 3 // fromIndex is -100 // computed index is 3 + (-100) = -97  var arr = ['a', 'b', 'c'];  arr.includes('a', -100); // true arr.includes('b', -100); // true arr.includes('c', -100); // true arr.includes('a', -2); // false

 案例 03 作為通用方法的 includes()

includes() 方法有意設計為通用方法。它不要求this值是數組對象,所以它可以被用于其他類型的對象 (比如類數組對象)。下面的例子展示了 在函數的  arguments 對象上調用的 includes() 方法。

(function() {   console.log([].includes.call(arguments, 'a')); // true   console.log([].includes.call(arguments, 'd')); // false })('a','b','c');

 5.1 array.indexOf() 概述

indexOf()方法返回在數組中可以找到一個給定元素的第一個索引,如果不存在,則返回-1。

語法

arr.indexOf(searchElement[, fromIndex])

參數

  • searchElement

要查找的元素

  • fromIndex 可選

開始查找的位置。如果該索引值大于或等于數組長度,意味著不會在數組里查找,返回-1。如果參數中提供的索引值是一個負值,則將其作為數組末尾的一個抵消,即-1表示從最后一個元素開始查找,-2表示從倒數第二個元素開始查找  ,以此類推。  注意:如果參數中提供的索引值是一個負值,并不改變其查找順序,查找順序仍然是從前向后查詢數組。如果抵消后的索引值仍小于0,則整個數組都將會被查詢。其默認值為0.

返回值

首個被找到的元素在數組中的索引位置; 若沒有找到則返回 -1

5.2 array.indexOf() 描述

indexOf 使用strict equality (無論是 ===, 還是 triple-equals操作符都基于同樣的方法)進行判斷  searchElement與數組中包含的元素之間的關系。

案例 01 使用indexOf

以下例子使用indexOf方法確定多個值在數組中的位置。

var array = [2, 5, 9]; array.indexOf(2);     // 0 array.indexOf(7);     // -1 array.indexOf(9, 2);  // 2 array.indexOf(2, -1); // -1 array.indexOf(2, -3); // 0

 案例 02 找出指定元素出現的所有位置

var indices = []; var array = ['a', 'b', 'a', 'c', 'a', 'd']; var element = 'a'; var idx = array.indexOf(element); while (idx != -1) {   indices.push(idx);   idx = array.indexOf(element, idx + 1); } console.log(indices); // [0, 2, 4]

 案例 03 判斷一個元素是否在數組里,不在則更新數組

function updateVegetablesCollection (veggies, veggie) {     if (veggies.indexOf(veggie) === -1) {         veggies.push(veggie);         console.log('New veggies collection is : ' + veggies);     } else if (veggies.indexOf(veggie) > -1) {         console.log(veggie + ' already exists in the veggies collection.');     } }  var veggies = ['potato', 'tomato', 'chillies', 'green-pepper'];  // New veggies collection is : potato,tomato,chillies,green-papper,spinach updateVegetablesCollection(veggies, 'spinach'); // spinach already exists in the veggies collection. updateVegetablesCollection(veggies, 'spinach');

感謝各位的閱讀,以上就是“函數式array邏輯判斷的函數有哪些”的內容了,經過本文的學習后,相信大家對函數式array邏輯判斷的函數有哪些這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

吉首市| 革吉县| 张家界市| 荔浦县| 和政县| 峨眉山市| 云霄县| 蒙山县| 奈曼旗| 海门市| 吉首市| 梁平县| 手机| 长兴县| 黄平县| 贵德县| 苍南县| 新蔡县| 宁津县| 呈贡县| 渭源县| 元阳县| 阿瓦提县| 平定县| 伊金霍洛旗| 江北区| 淮阳县| 明溪县| 五台县| 涪陵区| 张家港市| 团风县| 建平县| 吴旗县| 南乐县| 博爱县| 视频| 巨野县| 左云县| 盐源县| 娄烦县|