Skip to main content

PhoneNumberInput Component

⛳ Overview

Create a PhoneNumberInput component.
only accepts numerical digits format the number automatically as (123)456-7890 by

  • adding the parenthesis when the 4th digit is entered
  • also adding - before 7th digit

📃 Analysis

Thoughts
  • Controlled input element
  • Replace all non-numeric character with empty string
  • Using slice or splice

✏ Code

Live Editor
Result
Loading...