[기본미션] Hello World 출력
[학습내용] chapter 01-chapter 02
자료형
let n = 1 // 숫자 number
let s = "hi" // 문자열 string
let b = false // 불린 boolean
const arr = [10, 20] // array
const obj = {apple: 1} // object
console.log(n, s, b)
형변환
s = 1 + "2" // 숫자 + 문자열 = 문자열
n = 1 - "2" // 숫자 - 문자열 = 숫자
s = String(n) // 숫자 -> 문자열
n = Number(s) // 문자열 -> 숫자
b = Boolean(0) // false
b = Boolean('')
b = Boolean(undefined)
b = Boolean(null)
week3 https://big-mango.tistory.com/152
week2 https://big-mango.tistory.com/149
week1 https://big-mango.tistory.com/146
'혼공' 카테고리의 다른 글
week2-python (0) | 2023.07.16 |
---|---|
week2-java (0) | 2023.07.15 |
week2-javascript (0) | 2023.07.13 |
week1-python (0) | 2023.07.09 |
week1-java (0) | 2023.07.09 |