javascript 配列データの全ての値が条件を満たしているかを確認する

javascript 配列データの全ての値が条件を満たしているかを確認する

javascriptで、everyを使用して、配列データの全ての値が条件を満たしているかを確認するサンプルコードを記述してます。

環境

  • OS windows11 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 103.0.5060.134

every使い方

「every」を使用すると、配列データの全ての値が条件を満たしているかを確認することが可能です。
※「every」は、元の配列に影響はありません。

let arr = [2,5,6]

console.log( arr.every(function(x){ return x > 1 }) ); // true
console.log( arr ); // [2, 5, 6]

アロー関数で記述すると、以下のようになります。

let arr = [2,5,6]

console.log( arr.every(x => x > 1) ); // true

上記は、アロー関数で、引数を省略してますが、以下のコードと同じことです。

let arr = [2,5,6]

const result = arr.every((value, index, array) => {
  return (value > 1);
});

空の配列

空の配列に使用すると、全て「true」が返ります。

let arr = [];

console.log( arr.every(x => x > 100) ); // true

空の配列には、使用したくない場合は判定してから使用します。

let arr = [];

if (arr.length === 0)  console.log( arr.every(x => x > 100) );

どれか1つでも一致

条件に、配列の値が1つでも一致しているかを判定するには「some」を使用します。

let arr = [ -1, -2 , 5];

console.log( arr.some(x => x > 1) ); // true

arr = [ -1, -2 , -5];

console.log( arr.some(x => x > 1) ); // false

ちなみに「some」の場合は、空の配列を使用すると「false」が返ります。

let arr = [];

console.log( arr.some(x => x > 1) ); // false

サンプルコード

以下は、
「実行」ボタンをクリックすると、ランダムな3個の配列を生成して、
指定した条件である、配列内の値が全て3より大きければ「true」それ以外は「false」を表示する
サンプルコードとなります。

※cssには「bootstrap5」を使用してます。「bootstrap5」は、IEのサポートを終了してます。関数はアロー関数を使用してます。

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css">
</head>

<style>
  .main {
    margin: 0 auto;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
  }
</style>
<script>

  const hoge = () => {

    // ランダムな3個の整数1桁の配列を生成
    const arr = Array(3).fill().map(x => ~~(Math.random() * 10));

    // 生成した配列を表示
    disp(arr, "rand");

    // 配列内の値が全て3より大きければtrue それ以外はfalse
    result.innerHTML = arr.every(x => x > 3) // document.getElementById('result');を省略

  }

  //フロントに表示する関数
  const disp = (arr, id) => {
    let text = [];
    // for ofを使用
    for (let item of arr) {
      text.push('<li class="list-group-item">' + item + '</li>');
    }
    //innerHTMLを使用して表示    
    document.getElementById(id).innerHTML = text.join('');
  }

  window.onload = () => {
    // クリックイベントを登録
    btn.onclick = () => { hoge(); }; // document.getElementById('btn');を省略
  }

</script>

<body>
  <div class="main container">

    <h2><span class="badge bg-success">ランダムな配列</span></h2>
    <ul id="rand" class="list-group list-group-flush"></ul>

    <h2><span id="result" class="badge bg-success">結果</span></h2>

    <div class="row">
      <button id="btn" type="button" class="btn btn-warning">
        実行
      </button>
    </div>

  </div>

</body>

</html>

判定されていることが確認できます。