JavaScript xxx.contains is not a functionの解決方法
環境
Google Chrome 114.0.5735.199(Official Build) (64 ビット)
Windows 11 Pro 64bit
修正前コード
const strA = 'hello world’;
const result = strA.contains('world’);
エラーメッセージ
Error: strA.contains is not a function
原因
contains(otherNode)
引数 otherNode
検査する Node です。
修正後コード
const strA = 'hello world'; const result = strA.includes('world'); console.log(result);
結果
> true