w3resource

JavaScript: Print an integer with commas as thousands separators

JavaScript validation with regular expression: Exercise-21 with Solution

Write a JavaScript function to print an integer with thousands separated by commas.

Visual Presentation:

JavaScript: Print an integer with commas as thousands separators

Sample Solution:

JavaScript Code:

function thousands_separators(num)
  {
    var num_parts = num.toString().split(".");
    num_parts[0] = num_parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",");
    return num_parts.join(".");
  }

console.log(thousands_separators(1000));
console.log(thousands_separators(10000.23));
console.log(thousands_separators(100000));

Output:

1,000
10,000.23
100,000

Flowchart:

Flowchart: JavaScript- Print an integer with commas as thousands separators

Live Demo:

See the Pen javascript-regexp-exercise-21 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus.

Previous: Write a JavaScript function to check a given value contains alpha, dash and underscore.
Next: JavaScript Validation Exercises Home.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/javascript-exercises/javascript-regexp-exercise-21.php