const str = 'hello world!'; const result = /^hello/.test(str); console.log(result); // true /** The test() method executes a search for a ...
確定! 回上一頁