weekend study - typeof, split

Blackwidow·2020년 11월 8일
0

자바스크립트(javascript)

데이터타입 확인하기 - typeof

typeof 'hello' // "string"
typeof 100 // "number"
typeof true // "boolean"
typeof false // "boolean"
typeof {age:'77'} // "object"
typeof [10,20,30] // "object"

여기서 재밌는점은 배열을 넣으면 "array"가 나와야 하는데 "object"가 나온다.
그래서 배열을 구하는 방법은 아래와 같다.

Array.isArray([10,20,30]) //true

배열타입 확인하기 - Array.isArray()

빈배열 길이 확인하기

let a = [1,3,5];
a.length; // 3
let b = [];
b.length; // 0

공백이 포함된 문자열 공백 기준으로 배열요소로 넣기 - str.split(' ')

let a = 'a b c';
a.split(' '); // ["a","b","c"]

for(let el of array) - 배열
for(;et in object) - 객체

profile
javascript 공부하는 sumiindaeyo

0개의 댓글