js check regex match phone number 10 - 12 code example
Example: regex to check the phone number javascript
//To check that the phone number is of 10 digits
let regex=/^[0-9]{10}$/;
//To check that the phone number is of 10 digits
let regex=/^[0-9]{10}$/;