gasの環境で以下のコードを実行するとエラーが出ます。
どこを直せばいいのでしょうか?
javascript
1 const userMessage = 1908; 2 const yearExp = /(19[0-9]{2}|20[0-9]{2})/; 3 const [matched, startHour, startMin] = userMessage.match(yearExp); 4 console.log(matched); 5 console.log(startHour); 6 console.log(startMin);
TypeError: userMessage.match is not a function
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/01 03:49
2020/06/01 03:53
2020/06/01 04:14
2020/06/01 06:30