Babó22 0 Share Posted May 28, 2006 Hello! Hogyan lehet Javascriptben véletlenszám generálást elvégezni? Igaz, PHP-ben feltettem ezt a kérdést, de kiderült, hogy ott nem lehet (vagy nem tudok) mûveleteket elvégezni. Ezért ezt a részét JavaScriptben csinálnám. Lehet-e ilyet csinálni a Javascriptben? A választ elõre is köszönöm. Link to comment Share on other sites More sharing options...
arpsoft 12 Share Posted May 28, 2006 A math osztálynak van random metódusa. Ez 0.0 és 1.0 közötti számot ad vissza. Math.random Link to comment Share on other sites More sharing options...
durato 0 Share Posted July 6, 2006 Picit pontosítanék, illetve bõvítenék: szam = Math.random()*x Magyarázat: alapból ez nullától x- ig generál törtszámot, ha csak így írod be: szam=Math.random() akkor 0-1-ig generál törtszámot ha így: szam=Math.floor(Math.random()*x+1) akkor 1-x-ig generál egész számot Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now