Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. {
  2. "pimage": [
  3. {
  4. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_sb.jpg",
  5. "timage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_s.gif",
  6. "mimage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011fp.gif",
  7. "lfimage": "http://img.bbystatic.com/BestBuy_US/images/products/7306/7306011_sa.jpg"
  8. }
  9. ]
  10. }
  11.  
  12. {
  13. "pimage": [
  14. {
  15. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_sb.jpg"
  16. },
  17. {
  18. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_s.gif"
  19. },
  20. {
  21. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_s.gif"
  22. },
  23. {
  24. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_s.gif"
  25. }
  26. ]
  27. }
  28.  
  29. var myObj = {
  30. "pimage": [
  31. {
  32. "limage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_sb.jpg",
  33. "timage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011_s.gif",
  34. "mimage": "http://images.bestbuy.com/BestBuy_US/images/products/7306/7306011fp.gif",
  35. "lfimage": "http://img.bbystatic.com/BestBuy_US/images/products/7306/7306011_sa.jpg"
  36. }
  37. ]
  38. }
  39. var myFunc = function(obj) {
  40. var keys = Object.keys(obj.pimage[0]);
  41. var newObj = {"pimage":[]};
  42. keys.forEach(function(k) {
  43. var newImg = {};
  44. newImg['limage'] = k;
  45. newObj.pimage.push(newImg);
  46. });
  47. return newObj;
  48. }
  49.  
  50. console.log(myFunc(myObj));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement