Skip to content

Instantly share code, notes, and snippets.

@spidgorny
Created February 7, 2018 11:47
Show Gist options
  • Save spidgorny/de15c4e894b5bda9bfbcae0834812da9 to your computer and use it in GitHub Desktop.
Save spidgorny/de15c4e894b5bda9bfbcae0834812da9 to your computer and use it in GitHub Desktop.
Find the average price of all ebay offers on the page. Press F12 and run this in the console.
$('.POSITIVE').map((i, el) => {
let k = $(el).text().replace('EUR ', '');
return parseInt(k);
}).get().reduce((a, b) => a + b, 0)
/$('.POSITIVE').length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment