」工欲善其事,必先利其器。「—孔子《論語.錄靈公》
首頁 > 程式設計 > 大批

大批

發佈於2025-01-18
瀏覽:738

Array

方法是可以在物件上呼叫的 fns
數組是對象,因此在JS中它們也有方法。

slice(begin):將陣列的一部分提取到新數組中,而不改變原始數組。

let arr = ['a','b','c','d','e'];

// Usecase: Extract till index passed as argument
arr.slice(2); // [ 'c', 'd', 'e' ]

// Usecase: Extract from [first index] to [second index-1] value.
arr.slice(2,4); // [ 'c', 'd' ] i.e Length of array will be end-begin or 4-2 = 2 

// Usecase: Extract last 2 elements
arr.slice(-2); // [ 'd', 'e' ]

// Usecase: Extract the last element.
arr.slice(-1);  // [ 'e' ]  

// Usecase: Extract from index passed to leaving the last two elements.
arr.slice(1,-2);  // [ 'e' ]  

// Usecase: Create a shallow copy of an array
arr.slice(); // 1st way
[...arr]; // 2nd way
// 用例:從 [第一個索引] 提取到 [第二個索引-1] 值。 arr.slice(2,4); //

即陣列長度為 end-begin 或 4-2 = 2 // 用例:提取最後 2 個元素 arr.slice(-2); //

// 用例:提取最後一個元素。 arr.slice(-1); // ['e'] // 用例:從傳遞到最後兩個元素的索引中提取。 arr.slice(1,-2); // ['e'] // 用例:建立數組的淺表副本 arr.slice(); // 第一種方式 [...ar]; //第二種方式
// splice: remove the elements begining from the index passed. Mutates the orig. array.
// returns: part of the removed array
let arr = ['a','b','c','d','e'];
// arr.splice(2); // [ 'c', 'd', 'e' ]
// arr; // [ 'a', 'b' ]

// Usecase: Remove last element of the array
// arr.splice(-1); // [ 'e' ]
// arr; // [ 'a', 'b', 'c', 'd' ]

// Usecase: Delete no of elements. splice(index, deleteCount)
arr.splice(1, 3); // [ 'b', 'c', 'd' ]
arr; // [ 'a', 'e' ]
splice:改變原始數組

// splice:刪除從傳遞的索引開始的元素。改變原點。大批。 // 傳回:被刪除陣列的一部分 令 arr = ['a','b','c','d','e']; // arr.splice(2); //

// 到達; //
// 使用案例:刪除陣列的最後一個元素 // arr.splice(-1); // ['e'] // 到達; //

// 用例:刪除任何元素。拼接(索引,刪除計數) arr.splice(1, 3); //
let arr = ['a','b','c','d','e'];
let arr2 = arr.reverse();
arr;
arr2;

反向:改變原始數組。


傳回:反轉數組

// splice: remove the elements begining from the index passed. Mutates the orig. array.
// returns: part of the removed array
let arr = ['a','b','c','d','e'];
// arr.splice(2); // [ 'c', 'd', 'e' ]
// arr; // [ 'a', 'b' ]

// Usecase: Remove last element of the array
// arr.splice(-1); // [ 'e' ]
// arr; // [ 'a', 'b', 'c', 'd' ]

// Usecase: Delete no of elements. splice(index, deleteCount)
arr.splice(1, 3); // [ 'b', 'c', 'd' ]
arr; // [ 'a', 'e' ]
let arr = ['a','b','c','d','e']; 讓 arr2 = arr.reverse(); 到達; arr2;

concat:連接兩個陣列。


傳回:連線數組

// splice: remove the elements begining from the index passed. Mutates the orig. array.
// returns: part of the removed array
let arr = ['a','b','c','d','e'];
// arr.splice(2); // [ 'c', 'd', 'e' ]
// arr; // [ 'a', 'b' ]

// Usecase: Remove last element of the array
// arr.splice(-1); // [ 'e' ]
// arr; // [ 'a', 'b', 'c', 'd' ]

// Usecase: Delete no of elements. splice(index, deleteCount)
arr.splice(1, 3); // [ 'b', 'c', 'd' ]
arr; // [ 'a', 'e' ]
let arr1 = ['a','b','c','d','e']; 令 arr2 = ['f','g','h','i','j']; [...arr1,...arr2]; // 第一種方式 arr2 = arr1.concat(arr2); //第二種方式

join:連接兩個陣列。

傳回:連線數組


let arr1 = ['a','b','c','d','e']; 令 arr2 = ['f','g','h','i','j']; const x = arr1.concat(arr2); x.join('-'); // 'a-b-c-d-e-f-g-h-i-j'
let arr = ['a','b','c','d','e'];

arr[0];    // 1st way
arr.at(0); // 2nd way

// Get the last element of the array
arr[arr.length - 1];  // 1st way
arr.slice(-1)[0];     // 2nd way
arr.at(-1);           // 3rd way

arr.at(0); // 'a'
arr.at(-1); // 'e'
「隨著時間的推移,你會根據它們的用法來記住它們。」


at:從末尾開始計數,從索引為-1開始

// Looping over array using forEach method.
let account = [2000,-300, 400, -200, -500,  1000, -300];

// Loop over an array using for-of
for(let money of account){
  if(money > 0){
    console.log(`Deposited ${money}`);
  } else {
    console.log(`Withdrawn ${Math.abs(money)}`);
  }
}

// .entries(): returns an array of arrays.
// return the output as index-value pair.
// first element must be index, second element must be element-value
for(let [i,money] of account.entries()){
  if(money > 0){
    console.log(`Transaction ${i 1}, Deposited ${money}`);
  } else {
    console.log(`Transaction ${i 1}, Withdrawn ${Math.abs(money)}`);
  }
}

// Loop over an array using forEach which requires a callback fn.
// forEach will call the callback fn, and not we.
// forEach will pass each element as argument in every iteration.
account.forEach(function(money){
  if(money > 0){
    console.log(`Deposited ${money}`);
  } else {
    console.log(`Withdrawn ${Math.abs(money)}`);
  }
});
// Iteration 1: pass arg1 to CB-fn(arg1)
// Iteration 2: pass arg2 to CB-fn(arg2)
// Iteration 3: pass arg3 to CB-fn(arg3)
// .....
// .....


// forEach will pass each element, index, array as argument in every iteration. Order of arguments matter, not the no of these arguments i.e first element should be the current-Element, second element should be index, third element should be entire array which is being looped-over.
// first element must be element-value, second element should be index, third element must be entire array. This is how its different from array.entries()
account.forEach(function(money, i, arr){
  if(money > 0){
    console.log(`Transaction ${i 1}, Deposited ${money} into ${arr}`);
  } else {
    console.log(`Transaction ${i 1}, Withdrawn ${Math.abs(money)} from ${arr}`);
  }
});

let arr = ['a','b','c','d','e']; arr[0]; // 第一種方式 arr.at(0); //第二種方式 // 取得數組的最後一個元素 arr[arr.length - 1]; // 第一種方式 arr.slice(-1)[0]; //第二種方式 arr.at(-1); // 第三種方式 arr.at(0); // '一個' arr.at(-1); // 'e'


對每個:

// 使用 forEach 方法循環陣列。 讓帳戶 = [2000,-300, 400, -200, -500, 1000, -300]; // 使用 for-of 記憶體數組 for(讓帳戶資金){ 如果(錢> 0){ console.log(`已存入 ${money}`); } 別的 { console.log(`提現${Math.abs(money)}`); } } // .entries():傳回陣列的陣列。 // 將輸出作為索引值對傳回。 // 第一個元素必須是索引,第二個元素必須是元素值 for(let [i,money] of account.entries()){ 如果(錢> 0){ console.log(`交易${i 1},已存入${money}`); } 別的 { console.log(`交易${i 1},提領${Math.abs(money)}`); } } // 使用 forEach 迴圈數組,這需要回呼 fn。 // forEach 會呼叫回呼函數 fn,而不是我們。 // forEach 將在每次迭代中將每個元素作為參數傳遞。 account.forEach(函數(錢){ 如果(錢> 0){ console.log(`已存入 ${money}`); } 別的 { console.log(`提現${Math.abs(money)}`); } }); // 迭代 1:將 arg1 傳遞給 CB-fn(arg1) // 迭代 2:將 arg2 傳遞給 CB-fn(arg2) // 迭代 3:將 arg3 傳遞給 CB-fn(arg3) // ...... // ...... // forEach 將在每次迭代中將每個元素、索引、陣列作為參數傳遞。參數的順序很重要,而不是這些參數的編號,即第一個元素應該是當前元素,第二個元素應該是索引,第三個元素應該是整個陣列的正在循環。 // 第一個元素必須是元素值,第二個元素應該是索引,第三個元素必須是整個陣列。這就是它與 array.entries() 的不同之處 account.forEach(函數(錢, i, arr){ 如果(錢> 0){ console.log(`交易${i 1},存入${arr}`); } 別的 { console.log(`交易${i 1},從${arr}提取${Math.abs(money)}`); } }); 何時使用 for-of 和 forEach:

ArrayforEach:無法突破它。 continue-break 在其中不起作用。總是會遍歷整個數組,並且無法阻止它。

for-of:當我們需要循環出數組時使用。


「當你練習得越來越多時,你的技能就會變得更好。」

版本聲明 本文轉載於:https://dev.to/mahf001/array-2jmn?1如有侵犯,請洽[email protected]刪除
最新教學 更多>
  • Bootstrap 4 Beta 中的列偏移發生了什麼事?
    Bootstrap 4 Beta 中的列偏移發生了什麼事?
    Bootstrap 4 Beta:列偏移的刪除和恢復Bootstrap 4 在其Beta 1 版本中引入了重大更改柱子偏移了。然而,隨著 Beta 2 的後續發布,這些變化已經逆轉。 從 offset-md-* 到 ml-auto在 Bootstrap 4 Beta 1 中, offset-md-*...
    程式設計 發佈於2025-01-18
  • 儘管程式碼有效,為什麼 POST 請求無法擷取 PHP 中的輸入?
    儘管程式碼有效,為什麼 POST 請求無法擷取 PHP 中的輸入?
    解決PHP 中的POST 請求故障在提供的程式碼片段中:action=''而非:action="<?php echo $_SERVER['PHP_SELF'];?>";?>"檢查$_POST陣列:表單提交後使用 var_dump 檢查 $_POST 陣列的內...
    程式設計 發佈於2025-01-18
  • 插入資料時如何修復「常規錯誤:2006 MySQL 伺服器已消失」?
    插入資料時如何修復「常規錯誤:2006 MySQL 伺服器已消失」?
    插入記錄時如何解決「一般錯誤:2006 MySQL 伺服器已消失」介紹:將資料插入MySQL 資料庫有時會導致錯誤「一般錯誤:2006 MySQL 伺服器已消失」。當與伺服器的連線遺失時會出現此錯誤,通常是由於 MySQL 配置中的兩個變數之一所致。 解決方案:解決此錯誤的關鍵是調整wait_tim...
    程式設計 發佈於2025-01-18
  • 在 Go 中使用 WebSocket 進行即時通信
    在 Go 中使用 WebSocket 進行即時通信
    构建需要实时更新的应用程序(例如聊天应用程序、实时通知或协作工具)需要比传统 HTTP 更快、更具交互性的通信方法。这就是 WebSockets 发挥作用的地方!今天,我们将探讨如何在 Go 中使用 WebSocket,以便您可以向应用程序添加实时功能。 在这篇文章中,我们将介绍: WebSocke...
    程式設計 發佈於2025-01-18
  • 如何在 PHP 中組合兩個關聯數組,同時保留唯一 ID 並處理重複名稱?
    如何在 PHP 中組合兩個關聯數組,同時保留唯一 ID 並處理重複名稱?
    在 PHP 中組合關聯數組在 PHP 中,將兩個關聯數組組合成一個數組是常見任務。考慮以下請求:問題描述:提供的代碼定義了兩個關聯數組,$array1 和 $array2。目標是建立一個新陣列 $array3,它合併兩個陣列中的所有鍵值對。 此外,提供的陣列具有唯一的 ID,而名稱可能重疊。要求是建...
    程式設計 發佈於2025-01-18
  • HTML 格式標籤
    HTML 格式標籤
    HTML 格式化元素 **HTML Formatting is a process of formatting text for better look and feel. HTML provides us ability to format text without us...
    程式設計 發佈於2025-01-18
  • 大批
    大批
    方法是可以在物件上呼叫的 fns 數組是對象,因此在JS中它們也有方法。 slice(begin):將陣列的一部分提取到新數組中,而不改變原始數組。 let arr = ['a','b','c','d','e']; // Usecase: Extract till index pa...
    程式設計 發佈於2025-01-18
  • 如何在 Python 中將空格分隔的字串轉換為整數陣列?
    如何在 Python 中將空格分隔的字串轉換為整數陣列?
    如何在Python 中將空格分隔的字串拆分為整數將空格分隔的數字字串拆分為整數數組,一個簡單的方法是利用字串拆分和類型轉換。 分割字串:使用str.split()方法將字串分成子字串清單。預設情況下,str.split() 將任何空白字元視為分隔符號。因此,您可以簡單地呼叫它而不需要任何參數:&qu...
    程式設計 發佈於2025-01-17
  • 如何使用 FindControl 在 GridView 的 TemplateField 中尋找控制項?
    如何使用 FindControl 在 GridView 的 TemplateField 中尋找控制項?
    頁面類別的 FindControl 方法 可用於查找 Web 表單內的任何控件,無論其在頁面層次結構中的位置如何。這包括嵌套在其他控制項中的控件,例如 GridView 的 TemplateField 中的控制項。 要尋找 GridView 的 TemplateField 中的控件,可以使用以下步驟...
    程式設計 發佈於2025-01-17
  • 可以將多個 MySQL INSERT 語句組合成單一查詢以提高效能嗎?
    可以將多個 MySQL INSERT 語句組合成單一查詢以提高效能嗎?
    將多個MySQL INSERT 語句組合成一個查詢問題是是否允許在單一查詢中執行多個INSERT 語句使用PHP 進行MySQL 查詢。考慮以下程式碼片段:$string1= "INSERT INTO....;"; $string1 .= "INSERT INTO......
    程式設計 發佈於2025-01-17
  • 為什麼我的 Go 中的 AES ECB 加密函數不回傳任何資料?
    為什麼我的 Go 中的 AES ECB 加密函數不回傳任何資料?
    Go 中的AES ECB 加密:故障排除和實施您在Go 中實施AES ECB 加密的初次嘗試遇到了一些障礙。這裡有一個全面的解釋和修改後的程式碼解決方案:PKCS5 PaddingPKCS5 padding對於ECB模式下的AES加密至關重要。它確保明文的長度是區塊大小的倍數。您現有的 PKCS5P...
    程式設計 發佈於2025-01-17
  • 為什麼在 MySQL 中使用準備好的語句時會收到「MySQLSyntaxErrorException」?
    為什麼在 MySQL 中使用準備好的語句時會收到「MySQLSyntaxErrorException」?
    MySQL 準備語句錯誤:MySQLSyntaxErrorException問題:問題:]準備語句的語句時,遇到以下錯誤:「您的SQL語法中有錯誤;請檢查與您的 MySQL 伺服器版本相對應的手冊,以了解在「? 」附近使用的正確語法at line 1"分析:錯誤訊息表示準備好的語句的SQL...
    程式設計 發佈於2025-01-17
  • 如何使空白單元格邊框在 IE7 中可見?
    如何使空白單元格邊框在 IE7 中可見?
    空白單元格的邊框樣式在 IE 7 中,空單元格的邊框可能不可見。要解決此問題,請考慮以下CSS 解決方案:選項1:不間斷空格( )在其中插入不間斷空格( )空單元格強制其存在:td:empty { content: "&nbsp;"; }選項2:IE8 Empty-C...
    程式設計 發佈於2025-01-16
  • 使用 Java Spring Framework、JSON、JPA 和 PostgreSQL 開發項目
    使用 Java Spring Framework、JSON、JPA 和 PostgreSQL 開發項目
    ?使用 Java Spring 框架和 PostgreSQL 結束了一個令人興奮的專案!建立一個強大的、可擴展的解決方案,同時加深我在後端開發和資料持久性方面的技能,這是一次有益的經驗。準備好迎接下一個挑戰! ?
    程式設計 發佈於2025-01-16
  • 如何計算直線與水平軸之間的角度?
    如何計算直線與水平軸之間的角度?
    計算直線與水平軸夾角 在各種程式設計場景中,確定給定直線與水平軸之間的夾角是一個非常有用的操作。本文深入探討解決此問題的計算過程。 問題: 給定兩點 P1 和 P2,表示象限中的一條直線(原點位於左上角),計算該直線與通過 P1 點的水平軸形成的夾角。此角是從正水平軸逆時針方向測量的。 解決方...
    程式設計 發佈於2025-01-16

免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。

Copyright© 2022 湘ICP备2022001581号-3