當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Array.some()用法及代碼示例


Array some()JavaScript用於檢查數組中是否至少有一個元素滿足給定條件。它返回true如果數組中至少有一個元素通過了所提供函數實現的測試,否則返回false.

例子:這裏,條件在some()方法檢查數組中是否至少有一個元素大於 3。既然有,則hasElementGreaterThanThree變量變為true.

Javascript


// Array of numbers
const numbers = [1, 2, 3, 4, 5];
// Checking if at least one element is greater than 3
const hasElementGreaterThanThree = 
    numbers.some(function(element) {
  return element > 3;
});
console.log(hasElementGreaterThanThree); // Output: true
輸出
true

相關用法


注:本文由純淨天空篩選整理自amanv09大神的英文原創作品 What is the use of the Array.some() method in JavaScript ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。