뚜sh뚜sh

[모던 JavaScript] 1.2 매뉴얼과 명세서 본문

Language/JavaScript

[모던 JavaScript] 1.2 매뉴얼과 명세서

뚜sh뚜sh 2022. 12. 14. 16:33

명세서

- ECMA-262 명세서는 자바스크립트와 관련된 가장 심도 있고 상세한 정보를 담고 있는 공식 문서

- 갓 명세서에 등록된 기능이나 '등록되기 바로 직전'에 있는 기능, 제안 목록은 아래 링크에서 확인 가능

https://github.com/tc39/proposals

 

GitHub - tc39/proposals: Tracking ECMAScript Proposals

Tracking ECMAScript Proposals. Contribute to tc39/proposals development by creating an account on GitHub.

github.com

 

 

매뉴얼

- MDN JavaScript Reference엔 다양한 예제와 정보가 있으므로 특정 함수나 메서드에 대한 깊이 있는 정보를 얻고 싶다면 아래 링크를 확인

- 특정 내용을 검색하기 위해서는 `MDN 원하는 용어`를 구글 엔진에 입력하면 됨

 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference

 

JavaScript reference - JavaScript | MDN

The JavaScript reference serves as a repository of facts about the JavaScript language. The entire language is described here in detail. As you write JavaScript code, you'll refer to these pages often (thus the title "JavaScript reference").

developer.mozilla.org

 

 

호환성 표

- 아래 링크에서는 브라우저가 특정 기능을 지원하는 지 확인 가능

http://caniuse.com 

 

Can I use... Support tables for HTML5, CSS3, etc

 

caniuse.com

- 아래 링크에서는 자바스크립트 기능 목록을 볼 수 있고, 해당 기능을 특정 엔진이 지원하는 지 여부를 볼 수 있음

https://kangax.github.io/compat-table

 

https://kangax.github.io/compat-table/

 

kangax.github.io

 

Comments