重複 してないデータを配列の末尾に追加 function pushData(array, value){ if (array.indexOf(value) == -1){ array.push(value); } return true; } ...
確定! 回上一頁