JSFiddle - React, Tailwind, and code Playground

by vikasdevde

JavaScript

var str = "To be, or not to be, that is the question.";

function strEndsWith(str, suffix) {
    return str.match(suffix+"$")==suffix;
}
alert(strEndsWith(str,"question."));