Skip to content

Instantly share code, notes, and snippets.

@JTRNS
Created March 9, 2021 20:31
Show Gist options
  • Save JTRNS/b34b15776b1e79e1f3b4ff6c8521bb92 to your computer and use it in GitHub Desktop.
Save JTRNS/b34b15776b1e79e1f3b4ff6c8521bb92 to your computer and use it in GitHub Desktop.
Oxford 5000 Wordlist
// 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