Advertisement
orksnork

Untitled

Jul 25th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. var friends = [];
  2. friends.bill = [];
  3. friends.bill.firstName = "Bill";
  4. friends.bill.lastName = 'evans';
  5. friends.bill.number = '212-222-3434';
  6. friends.bill.address = ['One Microsoft Way','Redmond','WA','98052']
  7. friends.steve = [];
  8. friends.steve.firstName = "Steve";
  9. friends.steve.lastName = 'Berg';
  10. friends.steve.number = '212-212-3434';
  11. friends.steve.address = ['One Microsoft Way','Redmond','WA','98052']
  12.  
  13. friends.list = function (){
  14. for (i = 0; i < this.length; i++) {
  15. console.log(this.firstName[i]);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement