본문 바로가기
Develop/Javascript

자바스크립트 자료형 #1 기본 자료형

by bellsilver7 2020. 3. 17.
728x90

 

String (문자열) : 보통의 텍스트를 말하며 ""(쌍따옴표) 사이에 입력합니다.

const str1 = "Hello";
const str2 = "12345";

 

Boolean(true/false) : 논리 자료형이라고도 하며, 참과 거짓을 나타내는 데 쓰입니다.

const bool1 = true;
const bool2 = false;

 

Number(숫자)

const num = 314;

 

 

Float(소숫점)

const flot = 3.14;

 

 

 

자바스크립트 자료형 #2 객체와 배열

Array(배열) : [] 안에 담는다. const fruits = ["banana", "apple", "orange", "strawberry"]; console.log(fruits[1]); 결과 : apple 여러가지 자료형을 담을 수 있을까요? 아래와 같이 배열에는 서로 다른 자..

bellsilver7.tistory.com

 

728x90

댓글