데이터 타입
데이터 타입 데이터 타입은 변수에 저장되는 데이터의 유형으로 원시(Primitive)데이터 타입 과 객체(Object)데이터 타입 으로 나눌 수 있습니다. 원시(Primitive)데이터 타입으로는 number, strong, boolean, undefined, null, symbol 등이 있으며, 객체(Object)데이터 타입에는 function, object, array 등이 있습니다. number(숫자) 데이터 number 데이터는 정수, 소수점, 지수를 표현할 수 있습니다. var num1 = 10; var num2 = 10.5; var num3 = le+2; console.log(num1); // 10 console.log(num1); // 10 console.log(num3); // 100 ,l..
2022. 7. 26.
<