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 DOM Exercises.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.