JavaScript 또는 jQuery 문자열은 유틸리티 함수로 끝납니다. 문자열이 어떤 값으로 끝나는지 알아내는 가장 쉬운 방법은 무엇입니까?Regexps는 다음과 같이 사용할 수 있습니다. str.match(/value$/) 문자열 끝에 'value'($)가 있으면 true로 반환됩니다.prototypejs에서 도난: String.prototype.endsWith = function(pattern) { var d = this.length - pattern.length; return d >= 0 && this.lastIndexOf(pattern) === d; }; 'slaughter'.endsWith('laughter'); // -> true 정규식 "Hello world".match(/world$/) ..