Dream🐰ng
article thumbnail
Published 2022. 9. 21. 17:18
[JS] νƒ€μž… πŸ“ Study/JavaScript

 

νƒ€μž…


νƒ€μž…μ΄λž€?

μ €μž₯된 κ°’μ˜ μ’…λ₯˜μ— 따라 λ‹¬λΌμ§€λŠ” κ²ƒμœΌλ‘œ, λͺ¨λ“  λ³€μˆ˜λŠ” νƒ€μž…μ„ κ°–κ³  μžˆλ‹€.

 

✏️ νƒ€μž…μ˜ μ’…λ₯˜

  • μ›μ‹œκ°’
    - Boolean νƒ€μž… : true와 false 2κ°€μ§€ 값을 κ°€μ§„λ‹€.
    - Null νƒ€μž…
    - Undefined νƒ€μž…
    - Number νƒ€μž… : 숫자 값을 κ°€μ§„λ‹€.
    - BigInt νƒ€μž…
    - String νƒ€μž… : 문자 값을 κ°€μ§„λ‹€.
    - Symbol νƒ€μž…
  • 객체 : μ›μ‹œκ°’μ„ μ œμ™Έν•œ 것듀

 

✏️ typeof μ—°μ‚°μž

νŠΉμ •κ°’μ˜ νƒ€μž…μ„ μ•Œκ³  싢을 λ•Œ μ‚¬μš©ν•˜λŠ” μ—°μ‚°μžμ΄λ‹€.

console.log(typeof 20220822);
// expected output: number

console.log(typeof '20220822');
// expected output: string

console.log(typeof true);
// expected output: boolean

console.log(typeof helloWorld);
// expected output: undefined

 

typeof μ—°μ‚°μžλ₯Ό μ‚¬μš©ν–ˆμ„ λ•Œ λ°°μ—΄μ˜ 경우 νŒλ³„μ΄ λΆˆκ°€λŠ₯ν•˜λ‹€. λ°°μ—΄κ³Ό 객체 λͺ¨λ‘ typeof μ—°μ‚°μžλ₯Ό μ‚¬μš©ν•˜λ©΄ 'object'κ°€ 결과둜 λ‚˜μ˜¨λ‹€.
profile

Dream🐰ng

@shoupeach

🐰 Happy new rabbit! 🐰

profile on loading

Loading...