Guest User

Untitled

a guest
Feb 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. var writers = [
  2. {
  3. firstName: "Virginia",
  4. lastName: "Woolf",
  5. occupation: "writer",
  6. age: 59,
  7. alive: false
  8. },
  9. {
  10. firstName: "Zadie",
  11. lastName: "Smith",
  12. occupation: "writer",
  13. age: 41,
  14. alive: true
  15. },
  16. {
  17. firstName: "Jane",
  18. lastName: "Austen",
  19. occupation: "writer",
  20. age: 41,
  21. alive: false
  22. },
  23. {
  24. firstName: "bell",
  25. lastName: "hooks",
  26. occupation: "writer",
  27. age: 64,
  28. alive: true
  29. },
  30. ];
  31.  
  32. for (var i=0;i<writers.length; i++){
  33. if (writers[i].alive === true){
  34. console.log("Hi, my name is " + writers[i].firstName + " " + writers[i].lastName + ". I am " + writers[i].age + " years old, and work as a " +writers[i].occupation + ".")
  35. }
  36. }
Add Comment
Please, Sign In to add comment