May 2001
Intermediate to advanced
720 pages
23h 24m
English
Math.floor( ) Method — round a number to down to the previous integer
Flash 5; may be used when exporting Flash 4 movies
Math.floor(x)
A number.
The closest integer less than or equal to
x.
The floor method converts a floating-point
number to the first integer less than or equal to x.
Math.floor(1.99999); // Returns 1
Math.floor(5.5); // Returns 5
Math.floor(-5.5); // Returns -6
function minutesToHHMM (minutes) {
var hours = Math.floor(minutes/60);
minutes -= hours * 60;
minutes = minutes < 10 ? "0" + minutes : minutes;
return hours + ":" + minutes;
}
Math.ceil( ), Math.round( )
Read now
Unlock full access