I’m trying to do the Sudoku Solver project, and as expected, the recursive backtracking algorithm is very computationally intensive. When executing this, it uses a large amount of CPU, and seems to crash or freeze up before the solution can be reached:
Is there any way to execute JavaScript in a slower, but less intensive way within the browser?