Advertisement
RodrigoOrnelas

Matriz momento sessionStorage

Sep 14th, 2023
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.59 KB | Source Code | 0 0
  1. function(){
  2.  
  3.     var DadosBrutos = {{sua matriz no formato ua}};
  4.     var items = [];
  5.  
  6.     for(var i = 0; i < DadosBrutos.length;i++){
  7.         var indice = DadosBrutos[i];
  8.  
  9.         var format_ga4 = {
  10.                         "item_id":indice.id,
  11.                         "item_name":indice.name,
  12.                         "item_category":indice.category,
  13.                         "item_brand":indice.brand,
  14.                         "price":indice.price,
  15.                         "quantity":indice.quantity
  16.                        }
  17.         items.push(format_ga4);
  18.     };
  19.  
  20. return items;
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement