[javascript] Concept 33. 4까지
1. Call Stack - Maximum call stack size exceeded function hello() { say(); } function say() { hello(); } hello(); 2. Primitive types string "" \ eascape "Hello \"the awsome girl"\ !" Boolean Undefined //정의되지 않음 Null//존재하지 않음 - value symbol //ES6 NaN//Not a number Typeof 3. Value Types and Reference Types Value: string, number, boolean, Nan, undefined, null Reference: array, object, funtion conso..