dev_eunz

[JavaScript] startsWith 안될 때, 안됨. ( IE 환경에서 startsWith 안됨 ) 본문

IT

[JavaScript] startsWith 안될 때, 안됨. ( IE 환경에서 startsWith 안됨 )

은그램 2021. 2. 26. 18:43
728x90
반응형

jsp 기반으로 간단한 화면 제작을 하던 중.

 

 

IE환경에서 startsWith 함수가 안되는 경험을 했다.

크롬에서는 분명 잘됐는데.! 인터넷 익스플로러에서 확인해보니 안되는 것이다.

 

 

IE(인터넷 익스플로러) 환경에서는 해당 함수지원이 되지 않는다는 검색결과가 있었다.

출처 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith

 

 

 

 

이럴 때에는, 직접 함수를 선언해주면 된다.

String.prototype.startsWith = function(search, pos) {
        return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;
};

 

728x90
반응형
Comments