Ver originalvar x = 3.56;x.toFixed(); // "4"+x.toFixed(); // 4parseInt(x); // 3Math.floor(x); // 3~~x; // 3Math.round(x); // 4Math.ceil(x); // 4