Guest User

Untitled

a guest
Dec 12th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // literal syntax
  2. var myObj = {
  3. key: value
  4. // ...
  5. }
  6. // constructed form
  7. var myObj = new Object();
  8. myOjb.key = value;
Add Comment
Please, Sign In to add comment