This Answer Does not Use jQuery
Using an array similar to what's shown in the above 👆🏾answer, we can just use a few different array methods:
const WINNING_INDICES = [
[0, 1, 2]
[0, 3, 6],
[0, 4, 8],
[1, 4, 7],
[2, 5, 8],
[2, 4, 6],
[3, 4,
…
Top comments (0)