Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for random.js

(view source code of random.js as plain text)

  1. // Generate and display a random number between (and including) 1 and 100
  2. WScript.Echo( Math.floor( 100 * Math.random( ) + 1 ) );
  3.  

page last modified: 2024-04-16; loaded in 0.0180 seconds