Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

167
Vistas
Bitwise operator for modulo and rounding

I have a function which takes a fractional number, and converts it to an integer combined with a binary exponent.

For example, get_whole_number(10.5) will return => 21, 1, where

  • 21 is the integer
  • 1 is the power of 2 you must divide the 21 by to get the original float number (21/(2**1) = 10.5).

So far I have this function, and it works but it is inefficient and slow:

function get_whole_number(number, exponent=0) {
    if(number%1 == 0) return [number, exponent];
    exponent++;
    number *= 2;
    if(exponent >= 500) return [Math.round(number), exponent];
    return get_whole_number(number, exponent);
};

console.log(
  get_whole_number(1.125).join("/2^"));

To make it faster, I wanted to replace some operations, notably number%1 and Math.round with bitwise operations.

So my question is, how do I go about replacing % 1 and round() with bitwise operators?

I was thinking that I could use:

  • if((number & number) == number) instead of if(number%1 == 0) because bitwise operations ignore the fractional part of a number; but this only works sometimes.
  • (number | number) instead of Math.round(number) but this just truncates the value.
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda