ES6 문법
-
[JavaScript] JS ES6 에 추가된 기능 및 문법 정리프로그래밍 언어/JavaScript & TypeScript 2021. 11. 9. 22:25
# ECMAScript6 Overview and Comparison http://es6-features.org/ ECMAScript 6: New Features: Overview and Comparison Constants Constants Support for constants (also known as "immutable variables"), i.e., variables which cannot be re-assigned new content. Notice: this only makes the variable itself immutable, not its assigned content (for instance, in case the content is es6-features.org 1. String ..