Guest User

Untitled

a guest
Jan 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var user = {
  2. first: 'John',
  3. last: 'Doe',
  4. age: 42
  5. };
  6.  
  7. // plain console log
  8. console.log(JSON.stringify(user, undefined, 2));
  9. // or with interpolation:
  10. console.log(`User: ${JSON.stringify(user, undefined, 2)}`);
Add Comment
Please, Sign In to add comment