Blog/NotesConcept

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.

Beginner

Anuj Sharma

Last Updated Jan 9, 2025


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

  1. Expected Phone Number and Formatted Output
  2. Format Phone Number Without Country Code
  3. 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 number

Share this post now:

💬 Comments (0)

Login to comment

Advertisement

Flaunt You Expertise/Knowledge & Help your Peers

Sharing your knowledge will strengthen your expertise on topic. Consider writing a quick Blog/Notes to help frontend folks to ace Frontend Interviews.

Advertisement


Other Related Blogs

Master Hoisting in JavaScript with 5 Examples

Alok Kumar Giri

Last Updated Jun 2, 2025

Code snippet examples which will help to grasp the concept of Hoisting in JavaScript, with solutions to understand how it works behind the scene.

Polyfill for map, filter, and reduce in JavaScript

Anuj Sharma

Last Updated Oct 2, 2025

Explore Polyfill for map, filter and reduce array methods in JavaScript. A detailed explanation of Map, filter and reduce polyfills in JS helps you to know the internal working of these array methods.

Implement useFetch() Custom Hook in React

Anuj Sharma

Last Updated Oct 28, 2025

Find the step-by-step explanation of the useFetch custom hook in React that helps in fetching the data from an API and handling loading, error states.

Implement Infinite Currying Sum: JavaScript Interview Question sum(1)(2)(3)

Anuj Sharma

Last Updated Oct 26, 2025

In this post, we will going to cover the step-by-step implementation of Infinite Currying Sum with a code example. This is one of the most common JavaScript Interview questions.

setTimeout Polyfill in JavaScript - Detailed Explanation

Anuj Sharma

Last Updated Aug 3, 2025

Explore the implementation of setTimeout in JavaScript with a detailed explanation for every step. Understand all scenarios expected to implement the setTimeout polyfill.

Implement Infinite Currying Multiplication in JavaScript: mul(2)(3)(4)

Anuj Sharma

Last Updated Oct 26, 2025

Understand the step-by-step implementation of Infinite Currying Multiplication in JavaScript with a code example.

Stay Updated

Subscribe to FrontendGeek Hub for the frontend interview preparation, interview experiences, curated resources and roadmaps.

FrontendGeek
FrontendGeek

© 2024 FrontendGeek. All rights reserved