let array = ['JS', 'ECMA', 'TC39']; let searchElement = 'ECMA'; console.log(array.includes(searchElement)); // true ...
確定! 回上一頁