Skip to content

Instantly share code, notes, and snippets.

@Gowixx
Last active March 22, 2022 14:20
Show Gist options
  • Save Gowixx/1daa4131c71732c891a04caf3dae6b99 to your computer and use it in GitHub Desktop.
Save Gowixx/1daa4131c71732c891a04caf3dae6b99 to your computer and use it in GitHub Desktop.
get wordle answer for the day (paste into console)
setInterval((function () {
if(console.clear) { console.clear() };
solutionToday = JSON.parse(window.localStorage['nyt-wordle-state'])['solution'];
console.log(
`%c${solutionToday}`,
'color: white; background: #1e1e1e; font-size: 500%');
}), 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment