Created
February 7, 2018 11:47
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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