Because round() is a static method of Math, you always use it as Math.round(), rather than as a method of a Math object you created (Math has no constructor).
Syntax
Math.round(number);
Example
Math.round(19.39); //19
Math.round(19.7); //20
Math.round(-19.04); //-19
Math.round(-19.51); //-20
Example Program:- (Editor)
Editor is Loading...
Advertisement
0 nhận xét:
Đăng nhận xét