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
The Nunn Report - w/ Dan Nunn
1 hour ago[Ep 784] Election 2025: NYC is Screwed | Tatum Calls Out Kirk Conspiracists | Guest: Sam Anthony
151 watching -
1:22:54
DeVory Darkins
3 hours agoTrump makes shocking announcement as Major ELECTION UPDATE drops after bomb threat
81.7K42 -
10:11
Dr. Nick Zyrowski
8 days agoDoes Creatine CAUSE Hair Loss? (We All Got This Wrong)
6.85K2 -
1:09:24
Timcast
4 hours agoZohran Mamdani BLAMES Trump Over Bomb Threats At Polling Locations
149K100 -
3:09:52
Right Side Broadcasting Network
6 hours agoLIVE REPLAY: White House Press Secretary Karoline Leavitt Holds a Press Briefing - 11/4/25
69.8K14 -
1:58:04
The Charlie Kirk Show
4 hours agoGo Vote! + Healthcare and the Shutdown | Dr. Oz, Baris | 11.4.2025
79.1K17 -
58:49
The White House
5 hours agoPress Secretary Karoline Leavitt Briefs Members of the Media, Nov. 4, 2025
32.4K16 -
1:00:22
Sean Unpaved
4 hours agoCarousel Chaos: CFB Week 10 Shocks & Drops, Cardinals Stun MNF, & CBB's Opening Tip-Off Frenzy
28.9K1 -
1:57:43
Steven Crowder
6 hours agoFailed Hit Job: Another Trump Media Hoax Exposed
377K355 -
56:36
The Rubin Report
5 hours agoFox Hosts Stunned by Piers Morgan’s Dark Prediction for NYC Under Zohran Mamdan
49.2K50