Branimir Rijavec
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
beta/src/content/learn/tutorial-tic-tac-toe.md
|
@ -1417,7 +1417,7 @@ function handleClick(i) { |
|
|
if (squares[i]) { |
|
|
if (squares[i]) { |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
let nextSquares = squares.slice(); |
|
|
const nextSquares = squares.slice(); |
|
|
//... |
|
|
//... |
|
|
} |
|
|
} |
|
|
``` |
|
|
``` |
|
|