Created
May 30, 2018 20:51
-
-
Save DavidMellul/cd06f3c364d8d0c7c20b85b460c91235 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const phone1 = '+33 6 68 56 23 05'; | |
const phone2 = '06 68 56 23 05'; | |
const regex = /^((\+33 \d)|(0\d))( \d{2}){4}$/; | |
if( regex.test(phone1) && regex.test(phone2) ) | |
console.log('Call me maybe'); | |
// Prints : Call me maybe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment