Advertisement
Ukibuki

amazon prices

Dec 26th, 2020
1,385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const elements = document.getElementsByClassName('a-offscreen')
  2. const prices = Array.from(elements).map(el=> el.innerHTML)
  3.  
  4. let sum = prices.reduce((acc, item) => {
  5.     const itemPriceStr = item.slice(1)
  6.     const itemPrice = parseFloat(itemPriceStr, 10)
  7.  
  8.     return acc + itemPrice
  9. },0).toFixed(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement