Javascript = ECMAscrpit + DOM + BOM
Node = JS를 브라우저 밖에서 실행 해주는 도구!
NPM = Node Packaged Manager
cmd vs bash (window vs unix)
//Primitive Type
let number = 1
let string ="A"
let booleanType = true;
let nullType = null;
let undefinedType = undefined;
let symbolType = Symbol("onlyOne");