Skip to content

Instantly share code, notes, and snippets.

View goodfoo's full-sized avatar

Brad Brown goodfoo

  • Nelson, New Zealand
View GitHub Profile
@goodfoo
goodfoo / wordle.js
Created December 16, 2021 16:12 — forked from marcus-crane/wordle.js
A small devtools sketch for reflecting the Daily Wordle grid as a group of emojis
let tiles = []
document.querySelector("game-app").$board.querySelectorAll("game-row").forEach(row => {
let rowTiles = [];
row.$tiles.forEach(tile => rowTiles.push(tile._state));
tiles.push(rowTiles)
})
for (let row of tiles) {
let rowString = ""