回答編集履歴
1
yambejp 氏と回答内容が同じ(重複)であるため削除
test
CHANGED
@@ -1,19 +1,2 @@
|
|
1
|
-
> いずれかが含まれている場合は
|
2
|
-
|
3
|
-
`some()` メソッドを利用してもよいかと思います。
|
4
|
-
|
1
|
+
※ 削除
|
5
|
-
const sampleCode = ["03", "04", "32"];
|
6
|
-
const testA = ['02', '03', '04', '05', '32', '33', '34', '35'];
|
7
|
-
const testB = ['02', '03', '04', '05'];
|
8
|
-
const testC = ['32', '33', '34', '35'];
|
9
|
-
|
10
|
-
[['A', testA], ['B', testB], ['C', testC]].forEach(t => {
|
11
|
-
if (sampleCode.some(e => t[1].includes(e))) {
|
12
|
-
console.log(`テスト${t[0]}です`);
|
13
|
-
}
|
14
|
-
|
2
|
+
|
15
|
-
|
16
|
-
// テストAです
|
17
|
-
// テストBです
|
18
|
-
// テストCです
|
19
|
-
```
|