Created
June 12, 2021 18:25
-
-
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/
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
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