tictactoejs
Version:
provide a library like chess.js but for tic tac toe.. you can make your own GUI
29 lines (25 loc) • 584 B
HTML
<html>
<head>
<meta charset=utf-8>
<title>example</title>
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
</style>
</head>
<body>
<pre id="board"></pre>
<br/>
<br/>
example for node? <a href="node.js">here</a>
<script type="text/javascript" src="bower_components/tictactoejs/TicTacToe.min.js"></script>
<script type="text/javascript">
var game = new TicTacToe();
for(var i = 9; i > 0; i--){
game.randomMove()
}
document.getElementById('board').innerHTML = game.ascii();
</script>
</body>
</html>