본문 바로가기

DEV/Javascript

자바스크립트에서 startsWith, endsWith 쓰기

반응형

C#에 있는 startsWith, endsWith 함수를 javascript에서도 쓸 수 있게 함수를 만들었다


startsWith

String.prototype.startsWith = function(str){
	if (this.length < str.length) { return false; }
	return this.indexOf(str) == 0;
}

endsWith

String.prototype.endsWith = function(str){
	if (this.length < str.length) { return false; }
	return this.lastIndexOf(str) + str.length == this.length;
}


반응형