Instead of if (x === false), just write if (!x) (‘if not x’).
Your third console.log can’t happen, so I’d delete it.
Here’s how I’d write the code (different approach; not necessarily better):
let currentPlayer = this.state.xIsNext ? “X” : “O”;
console.log(“Player ${currentPlayer} has taken a turn.`);”
@strager