[ javascript] indexOf(), includes() 함수 브라우저 지원(IE, Chrome 등)

JooKit 주킷 2022. 7. 20. 13:40
목차 접기
728x90
반응형

includes()

 

includes() 함수는 IE 브라우저 지원을 하지 않는다고 한다.

 

올해 6월 15일자로 마이크로소프트가 IE 지원을 종료했다고 하지만 아직 우리나라에서 IE를 이용하는 사용자가 많다고 한다.

프로젝트를 진행하던 중, 나는 조금 더 사용이 편해 보이는 includes() 함수를 자주 사용했다.

 

코드 리뷰 과정에서 선임님은 includes() 함수는 IE 지원이 되지 않아 아직 IE를 이용하고 있는 사용자들이 우리의 서비스를 이용하려할 때,

기능이 제대로 작동하지 않는 문제에 직면하게 된다고 설명을 해주셨다.

 

대신 브라우저에 영향을 받지 않는 indexOf() 함수 사용을 권장해주셨다.

 

아래는 indexOf() 사용법과 지원 브라우저를 확인할 수 있는 페이지이다.

https://www.w3schools.com/jsref/jsref_indexof.asp

 

JavaScript String indexOf() Method

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

 

 

아래는 includes() 사용법과 지원 브라우저를 확인할 수 있는 페이지이다.

https://www.w3schools.com/jsref/jsref_includes.asp

 

JavaScript String includes() Method

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

 

위의 자료 또한 선임님께 공유받은 데이터로 

앞으로 업무 중에 유익하게 참고할 수 있을것 같은 사이트이다.

 

집에서도 심심하면 이것저것 찾아보고 하면 좋을 것 같다.

 

https://www.w3schools.com

 

W3Schools Free Online Web Tutorials

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

 

이 사이트 자체가..,,, 개발 참고용으로 너무 좋은 것 같은데..? 

728x90
반응형
LIST