“JavaScript flotan a int” Código de respuesta

JavaScript flotan a int

function float2int (value) {
    return value | 0;
}

float2int(3.75); //3 - always just truncates decimals

//other options
Math.floor( 3.75 );//3 - goes to floor , note (-3.75 = -4)
Math.ceil( 3.75 ); //4 - goes to ceiling, note (-3.75 = -3)
Math.round( 3.75 );//4 
Grepper

Longitud del número de JavaScript

var num = 1234
number.toString().length; // 4
DimAng

Obtenga el valor completo de un número JavaScript

var value = 2.9802453587962963;
var wholeNum = Math.floor(value);
console.log(wholeNum);  // output ==> 2
Open Oyster

JavaScript flotan a int

// x = Number.MAX_SAFE_INTEGER/10 * -1 // -900719925474099.1

// value = x      // x=-900719925474099   x=-900719925474099.5 x=-900719925474099.6

Math.floor(value) // -900719925474099     -900719925474100     -900719925474100
Math.ceil(value)  // -900719925474099     -900719925474099     -900719925474099
Math.round(value) // -900719925474099     -900719925474099     -900719925474100
Math.trunc(value) // -900719925474099     -900719925474099     -900719925474099
parseInt(value)   // -900719925474099     -900719925474099     -900719925474099
value | 0         // -858993459           -858993459           -858993459
~~value           // -858993459           -858993459           -858993459
value >> 0        // -858993459           -858993459           -858993459
value >>> 0       //  3435973837           3435973837           3435973837
value - value % 1 // -900719925474099     -900719925474099     -900719925474099
Sparkling Skunk

Respuestas similares a “JavaScript flotan a int”

Preguntas similares a “JavaScript flotan a int”

Más respuestas relacionadas con “JavaScript flotan a int” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código