var(2)
-
[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 -
[JS] var, let, const 차이 + 호이스팅(Hoisting)
1. 변수 선언 방식 var name = 'byein' console.log(name) // byein var name = 'var' console.log(name) // var 변수를 한 번 더 선언했지만 에러가 아니라 정상적으로 코드가 실행된다. var 는 변수 선언이 유연하여 편리할 수 있지만 코드량이 많아지면 변수가 어디에서 어떻게 사용될 지 파악하기 어려우며 값이 쉽게 바뀔 위험이 존재한다. 이를 보완하기 위해 ES6 이후로 let 과 const 가 추가되었다. let name = 'byein' console.log(name) // byein let name = 'var' console.log(name) // Uncaught SyntaxError: Identifier 'name' has alre..
2022.01.06