“Como reduzir bilhões em JavaScript” Respostas de código

Como reduzir bilhões em JavaScript

const formatCash = n => {
  if (n < 1e3) return n;
  if (n >= 1e3 && n < 1e6) return +(n / 1e3).toFixed(1) + "K";
  if (n >= 1e6 && n < 1e9) return +(n / 1e6).toFixed(1) + "M";
  if (n >= 1e9 && n < 1e12) return +(n / 1e9).toFixed(1) + "B";
  if (n >= 1e12) return +(n / 1e12).toFixed(1) + "T";
};

console.log(formatCash(1235000));
Nasty Newt

Como reduzir bilhões em JavaScript

const formatCash = n => {
  if (n < 1e3) return n;
  if (n >= 1e3) return +(n / 1e3).toFixed(1) + "K";
};

console.log(formatCash(2500));
Nasty Newt

Respostas semelhantes a “Como reduzir bilhões em JavaScript”

Perguntas semelhantes a “Como reduzir bilhões em JavaScript”

Mais respostas relacionadas para “Como reduzir bilhões em JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código