//forEach模擬continue const items = [1, 2, 3, 4, 5]; const no = 3; items.forEach(function (item) { if (item == no) { return false; } ...
確定! 回上一頁