[React Native] ECMAScript 6 (ES6)
1. var, let, const javascript에서는 var 하나면 유연한 방식으로 변수를 선언할 수 있어 편하지만 문제점이 있다. var 문제점 해결을 위해 ES6에서 let, const 가 새로 등장했다. var의 문제점 1. function 단위의 scope var hello = 'world'; function test() { var hello = 'korea'; console.log(hello); // korea } test(); console.log(hello); // world var hello = 'world'; if (true) { var hello = 'korea'; console.log(hello); // korea } console.log(hello); // korea 2. 변수..
2022.01.06