Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. var oldUsers = [{
  2. "SID": "S-12",
  3. "Username": "bring.on",
  4. "firstname": "bring",
  5. "lastname": "on",
  6. "email": "emasdklhsjas@gmnailasd.com"
  7. // and so on... 10 more properties
  8. }, {
  9. "SID": "S-13",
  10. "Username": "bring.on1",
  11. "firstname": "bring",
  12. "lastname": "on1",
  13. "email": "sdf@gmnailasd.com"
  14. // and so on... 10 more properties
  15. },
  16. // n numbers of more users...];
  17.  
  18. var newUsers = [{ FullName : "bring on - emasdklhsjas@gmnailasd.com",
  19. value : S-12
  20. },
  21. { FullName : "bring on1 - sdf@gmnailasd.com",
  22. value : S-13
  23. }, // more users with same properties as abvove
  24. ];
  25.  
  26. var newUsers = $.each(oldUser, function () {
  27. return u = {
  28. value : this.SID,
  29. FullName : this.firstname + " " + this.lastname + " - " + this.email,
  30. };
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement