Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save julienreszka/80fd5f72c199662beda8ddec07e5920d to your computer and use it in GitHub Desktop.
Save julienreszka/80fd5f72c199662beda8ddec07e5920d to your computer and use it in GitHub Desktop.
copy agricultural products field entries from cia factbook https://www.cia.gov/the-world-factbook/field/agricultural-products/
var items = [];document.querySelectorAll('.content-area-content>ul>li').forEach(e=>{
items.push({country:e.children[0].textContent, list:e.children[1].textContent})
}); copy(items);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment