スコアが最大のJavaScriptR-eturn配列アイテム
一部の科目で一部の学生が採点した点数を含む配列の配列があります-
const arr = [ ['Math', 'John', 100], ['Math', 'Jake', 89], ['Math', 'Amy', 93], ['Science', 'Jake', 89], ['Science', 'John', 89], ['Science', 'Amy', 83], ['English', 'John', 82], ['English', 'Amy', 81], ['English', 'Jake', 72] ];
この配列を取り込んでオブジェクトの配列を再調整する関数を作成する必要があります。各サブジェクトに1つのオブジェクトがあり、そのサブジェクトの最高得点者に関する詳細が含まれます。
出力は次のようになります-
[ { "Subject": "Math", "Top": [ { Name: "John", Score: 100} ] }, { "Subject": "Science", "Top": [ { Name: "Jake", Score: 89}, { Name: "John", Score: 89} ] }, { "Subject": "English", "Top": [ { Name: "John", Score: 82} ] } ]
この関数のコードを書いてみましょう-
例
const arr = [ ['Math', 'John', 100], ['Math', 'Jake', 89], ['Math', 'Amy', 93], ['Science', 'Jake', 89], ['Science', 'John', 89], ['Science', 'Amy', 83], ['English', 'John', 82], ['English', 'Amy', 81], ['English', 'Jake', 72] ]; const groupScore = arr => { return arr.reduce((acc, val, index, array) => { const [sub, name, score] = val; const ind = acc.findIndex(el => el['Subject'] === val[0]); if(ind !== -1){ if(score > acc[ind]["Top"][0]["score"]){ acc[ind]["Top"] = [{ "name": name,"score": score }]; }else if(score === acc[ind]["Top"][0]["score"]){ acc[ind]["Top"].push({ "name": name,"score": score }); } }else{ acc.push({ "Subject": sub,"Top": [{"name": name, "score": score}] }); }; return acc; }, []); }; console.log(JSON.stringify(groupScore(arr), undefined, 4));
出力
コンソールの出力は-
になりますconst arr = [ ['Math', 'John', 100], ['Math', 'Jake', 89], ['Math', 'Amy', 93], ['Science', 'Jake', 89], ['Science', 'John', 89], ['Science', 'Amy', 83], ['English', 'John', 82], ['English', 'Amy', 81], ['English', 'Jake', 72] ]; const groupScore = arr => { return arr.reduce((acc, val, index, array) => { const [sub, name, score] = val; const ind = acc.findIndex(el => el['Subject'] === val[0]); if(ind !== -1){ if(score > acc[ind]["Top"][0]["score"]){ acc[ind]["Top"] = [{ "name": name,"score": score }]; }else if(score === acc[ind]["Top"][0]["score"]){ acc[ind]["Top"].push({ "name": name,"score": score }); } }else{ acc.push({ "Subject": sub,"Top": [{"name": name, "score": score}] }); }; return acc; }, []); }; console.log(JSON.stringify(groupScore(arr), undefined, 4));[ { "Subject": "Math", "Top": [ { "name": "John","score": 100 } ] }, { "Subject": "Science", "Top": [ { "name": "Jake", "score": 89 }, { "name": "John", "score": 89 } ] }, { "Subject": "English", "Top": [ { "name": "John", "score": 82 } ] } ]
-
新しいキーワードでJavaScript配列を作成します。
以下は、新しいキーワードを使用してJavaScript配列を作成するためのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style&
-
JavaScript配列を条件付きで結合しますか?
以下は、JavaScriptの条件を持つJavaScript配列のコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>