[JS]데이터 타입
Var -> let - 사용 하지 말것 - 이유는 hoisting(선언 변수가 글로벌처럼 상단으로 가기 때문에) - NO block scope( '{ }'안 에서 선언한 것은 안에서만 쓸 수 있고 밖에서는 더 이상 사용할 수 없는데, var은 밖에서도 사용가능 = global variable) const(constants) - favor immutable data type due to some reasons(security, (hardware)thread safety, reduce human mistake) Variable Types - Primitive, single item : number, string, boolean, null, undefiedn, symbol - Object, box contai..