Fix typo in tutorial-tic-tac-toe.md (#5438)

This commit is contained in:
Branimir Rijavec
2023-01-05 22:12:46 +02:00
committed by GitHub
parent 0eba7f671e
commit 46b5a69d72

View File

@@ -1417,7 +1417,7 @@ function handleClick(i) {
if (squares[i]) {
return;
}
let nextSquares = squares.slice();
const nextSquares = squares.slice();
//...
}
```