How to Format Phone Number in JavaScript (JavaScript Interview)
Learn the best & quickest way to format phone number in JavaScript with or without country codes. This will help websites to show the phone numbers in a more human-readable format.
Anuj Sharma
Last Updated Jun 15, 2026

Displaying a phone number or taking a phone number as input is a widespread requirement for any website. While showing the phone number, it's a common problem to show phone numbers in a human-readable format, making it very easy to follow.
That is why it's important to learn how to format phone numbers in JavaScript with or without Country Code. Here is how you can do it in javascript
Table of Content
- Expected Phone Number and Formatted Output
- Format Phone Number Without Country Code
- Format Phone Number With Country Code
# Expected Phone Number and Formatted Output
// Phone number without country code
input: 9674140087
output: (967) 414-0087
// Phone number with country code
input: 919079151237
output: +91 (907) 915-1237
# Format Phone Number Without Country Code
Phone numbers without country codes should have a length of 10 digits. As part of the first step of formatting a phone number, all the non-numeric digits should be removed like dash (-) and check for the valid phone number length without country code. In the second step, formatting is done by using the required regex expression /^(\d{3})(\d{3})(\d{4})$/ and returned the formatted phone number.
Here is the code to format the phone number without the country code
Code:
function formatPhoneNumberWithoutCC(phoneNumber) {
// Remove all non-digit characters
const cleaned = phoneNumber.replace(/\D/g, '');
const ccLength = cleaned.split('').length;
if(ccLength > 10 || ccLength < 10){
console.error("Invalid phone number length!!");
return;
}
// Match common US phone number formats
const match = cleaned.match(/^(\d{3})(\d{3})(\d{4})$/);
if (match) {
return `(${match[1]}) ${match[2]}-${match[3]}`;
}
return phoneNumber; // Return original if no match
}
Tests:
Here are the tests, with 10-digit phone numbers, phone numbers with special chars and invalid phone numbers.
console.log(formatPhoneNumberWithoutCC('9674140087'));
// (967) 414-0087
console.log(formatPhoneNumberWithoutCC('967-414-0087'));
// (967) 414-0087
console.log(formatPhoneNumberWithoutCC('invalid'));
// Invalid phone number length!!
# Format Phone Number with Country Code
Phone numbers with country codes should have a length between 11 to 12 digits to represent 1-digit or 2-digit country codes. As part of the first step of formatting a phone number, all the non-numeric digits should be removed like dash (-) and check for the valid phone number length without country code.
In the second step, formatting is done by using the required regex expression /^(\d{1}) (\d{3})(\d{3})(\d{4})$/ for 1-digit country codes and /^(\d{2}) (\d{3})(\d{3})(\d{4})$/ for a 2-digit country code and returned the formatted phone number.
Here is the code to format the phone number with the country code
Code:
function formatPhoneNumberWithCC(phoneNumber) {
// Remove all non-digit characters
const cleaned = phoneNumber.replace(/\D/g, '');
const phoneNumberLength = cleaned.split('').length;
let matchWithCountryCode = null;
if(phoneNumberLength < 11 || phoneNumberLength > 12){
console.error("Country code missing Or Invalid phone number");
return;
} else if(phoneNumberLength === 11) {
// Handle 1 digit country code
matchWithCountryCode = cleaned.match(/^(\d{1})(\d{3})(\d{3})(\d{4})$/)
} else if(phoneNumberLength > 11 && phoneNumberLength <= 12){
// Handle 2 digit country code
matchWithCountryCode = cleaned.match(/^(\d{2})(\d{3})(\d{3})(\d{4})$/)
}
if (matchWithCountryCode) {
return `+${matchWithCountryCode[1]} (${matchWithCountryCode[2]}) ${matchWithCountryCode[3]}-${matchWithCountryCode[4]}`;
}
return phoneNumber; // Return original if no match
}
Tests:
Here are the tests, with one or two-digit country codes and phone numbers without country codes.
console.log(formatPhoneNumberWithCC('19673140087'));
//Output: +1 (967) 314-0087
console.log(formatPhoneNumberWithCC('919673140087'));
//Output: +91 (967) 314-0087
console.log(formatPhoneNumberWithCC('9073140087'));
//Output: Country code missing Or Invalid phone numberA seasoned Sr. Engineering Manager at GoDaddy (Ex-Dell) with over 12+ years of experience in the frontend technologies. A frontend tech enthusiast passionate building SaaS application to solve problem. Know more about me 🚀
Learn Next
Comments
Be the first to share your thoughts!
No comments yet.
Start the conversation!
Share your expertise
Publish a blog or quick notes on topics you know well — your write-up could be the answer someone needs before their next frontend interview.
Build your portfolio
Help the community
Sharpen your skills
Earn goodies
Other Related Blogs
What is javascript:void(0) and How it Works?
Anuj Sharma
Last Updated Jun 15, 2026
A comprehensive explanation about using javascript:void(0) in javascript. When to use javascript:void(0) and how it works with examples of using it with anchor tag.
Understand JavaScript Date Object with Examples (for JavaScript Interviews)
Anuj Sharma
Last Updated Jun 15, 2026
Go through different ways to display dates using javascript date object. It covers examples of date object usage to understand the main concepts of javascript date object.
Ultimate guide to REST API calls using Fetch: Machine Coding Essential
Vivek Chavan
Last Updated Jun 15, 2026
You will get a clear understanding about working with any rest api and common concepts asked during interviews
Understanding popstate event in Single Page Applications (SPAs)
Vijay Sai Krishna vsuri
Last Updated Feb 21, 2026
A Quick guide about popstate event in JavaScript, If you’ve ever hit the back button in your browser and wondered how your Single-Page Application knows which view to render, this guide is for you.
25+ Top JavaScript Interview Questions and Answers For Beginners
Anuj Sharma
Last Updated Feb 6, 2026
A comprehensive list of important JavaScript Interview Questions and Answers for Beginners with a detailed explanation of the applied JavaScript concept for in-depth understanding.
How to convert RGB to HEX in JavaScript
Anuj Sharma
Last Updated Dec 17, 2025
A quick way to convert RGB to HEX in JavaScript that will help to do the CSS RGB to HEX color conversion programmatically
How to convert HEX to RGB in JavaScript
Anuj Sharma
Last Updated Dec 17, 2025
A quick way to convert HEX to RGB in JavaScript that will help to do the CSS HEX to RGB color conversion programmatically.
5 Different Ways to Reload Page in JavaScript (Frontend Interview)
Anuj Sharma
Last Updated Dec 16, 2025
Explore the 5 most efficient ways to refresh or reload page in JavaScript, similar to location.reload(true), and identify the appropriate use cases to reload window using JS programmatically.
