String.prototype.endsWith()

(標準組み込みオブジェクト > String > メソッド)
https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith

str.endsWith("検索する文字列"[, 文字列の長さ])

endsWithは指定した文字列で終わっているかを確認するメソッドである。
第2引数で検索する文字列の長さを指定することができる。

例えば、10と指定すれば、検索対象の文字列の前方から10文字までが対象となる。

str = "大切な番号は★1234★です。"
str.endsWith("です。")
>> true

str = "大切な番号は★1234★です。"
str.endsWith(1234)
>> false

str = "大切な番号は★1234★です。"
str.endsWith(1234, 11)
>> true
inserted by FC2 system