I was just looking at JavaScript Timing Events, and there it says that "The second parameter indicates how many milliseconds from now you want to execute the first parameter."
Now, I know that in JavaScript, both floating point and integers are of type Number, and so syntactically I can enter a floating point value, e.g. 'setTimeout("javascript statement",4.5);' - however, will JavaScript even attempt to create a delay of 4.5 milliseconds there; or will it just automatically truncate to integer and go on?
Thanks in advance for any answers,
Cheers!
setTimeoutcomment there: "You never pass a string to setTimeout() unless you like using eval()" is not really related to this question. Still, a good page to know ;) Cheers! – sdaau Sep 2 '11 at 16:11