Created
March 9, 2021 20:31
-
-
Save JTRNS/b34b15776b1e79e1f3b4ff6c8521bb92 to your computer and use it in GitHub Desktop.
Oxford 5000 Wordlist
This file contains 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
// handy wordlist from https://www.oxfordlearnersdictionaries.com/wordlists/oxford3000-5000 | |
// copy is a copy to clipboard helper in browser devtools | |
copy(Array.from(document.querySelectorAll('#wordlistsContentPanel .top-g li')).map(li => { | |
const { hw, ox5000 } = li.dataset; | |
return { word: hw, level: ox5000, type: li.querySelector('span').innerText }; | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment