Check if a string is a valid phone number (basic international format).
Code
General/^[\+]?[(]?[0-9]{1,3}[)]?[-\s\.]?[0-9]{1,4}[-\s\.]?[0-9]{1,4}[-\s\.]?[0-9]{1,9}$/.test(phone);Parameters
Phone number to validate
Browser·fetch() may be limited by CORS
More JavaScript Snippets
Check Balanced Brackets
Check if brackets in a string are properly balanced and nested using a stack-based approach.
Check Password Strength
Check if a password meets strength requirements (8+ chars, uppercase, lowercase, number, special).
Get Type
Get the precise type of any value.
Is Alpha Only
Check if a string contains only alphabetic characters.
Is Alphanumeric
Check if a string contains only letters and numbers.
Is Array
Check if a value is an array.