10010.50b000110110x33Hello, "World"true, false{name: 'Lee', age: '29'}function () {}/[A-Z]+/g// 변수 선언문 var x; // 할당문 x = 5; // 함수 선언문 function foo () {} // 조건문 if (x > 1) { console.log(x); } // 반복문 for (var i = 0; i < 2; i++) { console.log(i); }