Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $.ajax({
  2. url: lib,
  3. method: 'GET',
  4. async: false,
  5. headers: {"accept":"application/json;odata=verbose"},
  6. success: function(data) {
  7. /* console.log(data); */
  8. if(data.d != undefined) {
  9. var temp_merch= [];
  10. $.each(data.d.results, function (i,item) {
  11.  
  12. }//each
  13. } });
  14.  
  15. var products = [{ Dell Laptop: { price: 1000.00, color: black },
  16. HP Laptop: { price: 900.00, color: grey }]
  17.  
  18. var dellLaptopPrice = products["Dell Laptop"].price;
  19. var dellLaptopColor = products["Dell Laptop"].color;
Add Comment
Please, Sign In to add comment