Guest User

Untitled

a guest
Mar 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. var a = [1,2]
  2. typeof(a) // object
  3.  
  4. var b = {"name":"Honey"}
  5. typeof(b) // object
  6.  
  7. var c = "Honey"
  8. typeof(c) // string
Add Comment
Please, Sign In to add comment