1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【JavaScript】filterを使って任意のデータを抽出

Last updated at Posted at 2020-05-08

filterメソッド

javascriptの配列メソッドの1つ。配列の内容を特定の条件で絞り込む。
抽出したいデータの条件を関数(コールバック関数)としてfilterメソッドの引数に与え、配列要素に対して実行、指定した条件と一致したものを抽出して配列を生成する。

コールバック関数とは

関数の引数の中に別の関数を指定する処理。

関数と引数についてはこちら

基本の書き方
sample.js
var items = [配列];
// 上記で定義した配列itemsから任意のデータを抽出
// ( )内が抽出したいデータの条件
items.filter(コールバック関数);

🌟 8より小さい数字を抽出

sample.js
var numbers = [4,1,6,5,8,9,10,19];
// 配列numbersから8より小さい数字を抽出して変数resultに格納
// 配列の値valueを引数として渡す
var result = numbers.filterfunction (value) {
return value < 8;
};

console.log(result);

// 結果は [4,1,6,5]

filterメソッドの引数として使われるもの

value ・・・配列の値
index ・・・配列要素のインデックス番号
array ・・・現在処理している配列

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?