Premium Only Content

Compact representation of a large number in JavaScript ( #shorts )
Hi Friends,
Compact representation of a large number in JavaScript
To generate a compact representation of a large number in JavaScript, you can use the following function
function getCompactNumber(numbr) {
const units = ['', 'K', 'M', 'B', 'T'];
let unitIndex = 0;
while (numbr ≥ 1000 && unitIndex < units.length - 1) {
numbr /= 1000;
unitIndex++;
}
return numbr.toFixed(1).replace(/\.0$/, '') + units[unitIndex];
}
getCompactNumber(1000); // "1K"
getCompactNumber(1200); // "1.2K"
getCompactNumber(1200000); // "1.2M"
getCompactNumber(1200000000); // "1.2B"
getCompactNumber function takes a number as an argument and returns a string representing the number in a compact format. The function uses an array of units to check which unit to use for the compact representation, and then divides the number by 1000 until it is less than 1000 or the largest unit has been used. The number which will be returned as result, is then formatted to one decimal place and any trailing ".0" is removed.
#javascript #compact #number #compactnumber #large #largenumber #string #javascriptinterview #method #js #jquery #function #shorts #viral #popular #latest #new #famous #coders #development #code #dev #interview #php #trend #answer #youtube #instagram #socialmedia #education #edit #gaming #how #india #knowledge #love #like #motivational #quiz #reels #short #subscribe #share #update #video #ytshorts #youtuber #princecheema_official @princecheema_official
-
2:01:30
BEK TV
4 days agoTrent Loos in the Morning - 9/2/2025
17.3K1 -
10:47
Nikko Ortiz
19 hours ago15 Seconds Of Fame Gone WRONG...
138K15 -
14:47
GritsGG
1 day agoRumble Tournament Dubular! Rebirth Island Custom Tournament!
94.3K5 -
1:36:05
Side Scrollers Podcast
22 hours agoStreamer ATTACKS Men Then Cries Victim + Pronoun Rant Anniversary + More | Side Scrollers
103K13 -
LIVE
Lofi Girl
2 years agoSynthwave Radio 🌌 - beats to chill/game to
257 watching -
42:55
Stephen Gardner
1 day ago🔥Trump’s SURPRISE Move STUNS Everyone - Democrats PANIC!
128K137 -
1:37:19
Badlands Media
19 hours agoBaseless Conspiracies Ep. 148: The Delphi Murders – Secrets, Setups, and Cover-Ups
71.9K24 -
5:59:05
SpartakusLIVE
13 hours ago#1 MACHINE Never Stops The GRIND || LAST Stream UNTIL Friday
169K9 -
28:36
Afshin Rattansi's Going Underground
2 days agoDoug Bandow: ENORMOUS DAMAGE Done to US’ Reputation Over Gaza, Trump ‘Easily Manipulated’ by Israel
49.8K41 -
2:45:13
Barry Cunningham
20 hours agoCBS CAUGHT AGAIN! CHICAGO A MESS! LISA COOK IS COOKED AND MORE LABOR DAY NEWS!
135K62