文字列の含有・前後一致を真偽値で返す
'hello world'.includes('world'); // true
'hello'.startsWith('he'); // true
'hello'.endsWith('lo'); // true
// 第2引数で検索開始/終了位置を指定
'hello'.startsWith('ll', 2); // true正規表現が不要なシンプルな検索に最適。大文字小文字を区別するので必要ならlowerCaseして比較する。