Skip to content

Instantly share code, notes, and snippets.

@aeneasr
Created August 31, 2017 10:29
Show Gist options
  • Save aeneasr/420fd63e44f0d78bd27bddfa9d4b4047 to your computer and use it in GitHub Desktop.
Save aeneasr/420fd63e44f0d78bd27bddfa9d4b4047 to your computer and use it in GitHub Desktop.
Estimating themeforest sales per category
var vals = [];
[].forEach.call(document.querySelectorAll('.product-list__column-price'), function(e) { vals.push({price: parseInt(e.querySelector('.product-list__price-desktop').textContent.replace('$', '')), sales: parseInt(e.querySelector('.product-list__sales-desktop').textContent.replace(' Sales', ''))}) })
console.log(vals)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment