DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Mastering React Efficiency: Refactoring Constructors for Peak Performance
  • Buh-Bye, Webpack and Node.js; Hello, Rails and Import Maps
  • What Is useContext in React?
  • How to Format a Number as Currency in JavaScript

Trending

  • Skills, Java 17, and Theme Accents
  • Migrate a Hardcoded LangGraph Agent to LaunchDarkly AI Configs in 20 Minutes
  • Stop Debugging Glue Jobs Manually: Building an Agentic Observability Layer for Data Pipelines
  • Why Your Test Automation Is Always Behind the Code And the Architecture That Fixes It
  1. DZone
  2. Coding
  3. JavaScript
  4. Format and Manipulate Numbers With Numeral.js

Format and Manipulate Numbers With Numeral.js

It's not as easy to manipulate numbers in JavaScript as it is in other languages. Learn how to use Numeral.js, a JavaScript library, to get the job done.

By 
Swathi Prasad user avatar
Swathi Prasad
·
May. 13, 17 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
16.0K Views

Join the DZone community and get the full member experience.

Join For Free

Often it is required that numbers be displayed in a formatted way, such as adding comma separations in long numeric values, plain old numbers with decimal places, percentages, and so on. JavaScript doesn’t come with vast formatting options like most other high level languages.

I recently found out about Numeral.js, a JavaScript library for formatting and manipulating numbers. It also allows you to add local and custom formats.

Usage

Download the library from GitHub or link it using CDNJS. Alternatively, you can do “npm install numeral.”

Once you have added the dependency, create an instance of numeral. The constructor takes numbers or strings.

let testNumeral = numeral(10000);

testNumeral.format('0,0');

>> 10,000

Converting to Currency

testNumeral = numeral(10000);

testNumeral.format('$0,0.00');

>> $10,000.00


Converting to Bytes

testNumeral = numeral(1024);

testNumeral.format(' 0b');

//1KB

Numeral.js is a great library and easy to use. If you want to learn more about it, check out the website for documentation and examples.

JavaScript library JavaScript

Published at DZone with permission of Swathi Prasad. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Mastering React Efficiency: Refactoring Constructors for Peak Performance
  • Buh-Bye, Webpack and Node.js; Hello, Rails and Import Maps
  • What Is useContext in React?
  • How to Format a Number as Currency in JavaScript

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook