Advertisement
kalovski

Untitled

Jul 14th, 2016
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var person = {
  2. firstName: "John",
  3. lastName: "Doe",
  4. age: "18",
  5. country: "Greenland"
  6. };
  7.  
  8. with(person) {
  9. console.log("Hi, my name is " + firstName + " " + lastName +
  10. ". I'm " + age + " years old, and live in " + country + ".");
  11. }
  12. // "Hi, my name is John Doe. I'm 18 years old, and live in Greenland."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement