원시타입(Primitive Type)

참조타입(Reference Type)

console.log([1, 2, 3] === [1, 2, 3]); 
/* 참조타입 데이터라서 왼쪽 오른쪽 서로 다른 저장공간을 잡아두기 때문에 false이다 */