// ------------------------------------------------------- // Filename: random_tile.js // Doc Type: text/javascript // (Microsoft JScript) // Author: J. Blustein // Version: 24 Sept 2001 // Comments: For CompSci 4173 Random Tile JScript demo // ------------------------------------------------------- function renumber() { var random = Math.floor(Math.random() * 90)+10; cell.innerText = random; } // renumber()