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
-
LIVE
Tundra Tactical
2 hours ago $0.48 earnedWe Survived the Military… But Not This Basement
129 watching -
20:12
Clownfish TV
10 hours agoDisney Needs MEN Back?! They ADMIT Star Wars and Marvel are DEAD!
9.35K22 -
LIVE
Anthony Rogers
9 hours agoEpisode 381 - Tim Kelleher
44 watching -
1:01:42
The Nick DiPaolo Show Channel
7 hours agoTDS Hits New Level! | The Nick Di Paolo Show #1786
43.5K31 -
1:02:27
Michael Franzese
5 hours agoFace to Face with a Former Chinatown Gangster Turned NYPD Detective
45K13 -
1:31:25
The Confessionals
10 hours agoThe Queen of Heaven Exposed (Hathor, Lilith & Ancient Gods Return)
29.4K6 -
LIVE
LFA TV
16 hours agoLFA TV ALL DAY STREAM - TUESDAY 9/2/25
608 watching -
LIVE
LIVE WITH CHRIS'WORLD
7 hours agoLIVE WITH CHRIS'WORLD - IT WORKED IN D.C. & IT WILL WORK IN CHICAGO
35 watching -
40:44
Ohio State Football and Recruiting at Buckeye Huddle
7 hours agoOhio State Football: 10 Things We Learned From Rewatching the Texas Win
16.4K -
1:11:49
Edge of Wonder
9 hours agoRemote Viewing 3I/ATLAS & Yellowstone’s Weird Anomalies
19.3K7