정수형식을 따로 제공하지 않고 모든 수는 배정밀도(double precision)부동소숫점(floating point)수
1/2 // 0 이 아닌 0.5 반환
3.5 % 1.2 // 1.1
'hello'.substring(0, 2.5) // 'he'
'hello'[2.5] // undefined
0/0 //NaN
'hello 🌐'.length // 8
0, NaN, null, undefined, '' 의 불리언값은 false 나머지는 true
변수를 초기화 하지 않으면 undefinded, 의도적인 값의 부재는 null 할당, undefinded 만 사용하자
`Hello, ${'world'.toUpperCase()}` // 'hello, WORLD' 템플릿리터럴
let age = 43
let harry = { name: 'Harry', age }
let harry = { name: 'Harry', [field.toLowerCase()]: 42 }
let harry = { name: 'Harry', 'your age': 42 }
harry['your age'] = 33
const someNumbers = [ , 2, ,3]
someNumbers[0] // undefined
someNumbers.length // 4
값으로 객체리터럴, 배열리터럴, 문자열, 소수점숫자, true, false, null 사용
문자열은 큰따옴표로 구분
프로퍼티명은 큰따옴표로 구분
맨끝에 쉽표를 붙일수 없음
JSON.stringify 객체를 JSON 문자열로 변환
JSON.parse JSON 문자열을 객체로 파싱
객체를 로깅할때는 문자열에 포함하지 않아야함
console.log(`harry=${harry}`) // harry=[object Object]
console.log('harry=', harry) // harry={ ... }
let [first, second] = ['one', 'two']
let [first, [second, third]] = [1, [2,3]]
let [first, second] = ['one'] // second 는 undefined
let { name, age } = { name: 'harry', age: 44 }
let { birthday: { year: patsBirthday }} = { name: 'pat', birthday: { day: 14, month: 3, year: 2002} } // patsBirthday = 2002
let [first, second, ...others] = [1, 2, 3, 4] // others 는 [3, 4]
let [first, second, ...others] = [4] // first 는 4, second 는 undefined, others 는 []
let { name, ...allButName } = { name: 'harry', age: 42, id: 11122 } // name 은 harry, allButName 은 { age: 42, id: 11122 }
let [first, second = 0] = [44] // second 는 0
01
0+NaN+Infinity+fasle+true+null+undefined // NaN
''+NaN+Infinity+fasle+true+null+undefined // 'NaNInfinityfalsetruenullundefined'
02
[]+[] // ''
{}+[] // 0 , {} 블록
[]+{} // '[object Object]'
{}+{} // '[object Object][object Object]'
[]-{} // NaN
03
-1%2 // -1
-2%2 // -0
-3%2 // -1
-4%2 // -0
-1.2%2 // -1.2
-2.3%2 // -0.2999999999999998
-2.4%2 // -0.3999999999999999
04