w3resource

JavaScript: Check whether a given value is a social security number or not

JavaScript validation with regular expression: Exercise-15 with Solution

Validate SSN

Write a JavaScript function to check whether a given value is a social security number or not.

Sample Solution:

JavaScript Code:

function is_socialSecurity_Number(str)
{
 regexp = /^(?!000|666)[0-8][0-9]{2}-(?!00)[0-9]{2}-(?!0000)[0-9]{4}$/;
  
        if (regexp.test(str))
          {
            return true;
          }
        else
          {
            return false;
          }
}

console.log(is_socialSecurity_Number("019-90-5680"));

console.log(is_socialSecurity_Number("K8V-3Y1"));

Output:

true
false

Flowchart:

Flowchart: JavaScript- Check whether a given value is a social security number or not

Live Demo:

See the Pen javascript-regexp-exercise-15 by w3resource (@w3resource) on CodePen.


For more Practice: Solve these Related Problems:

  • Write a JavaScript function that checks if a string is a valid U.S. Social Security Number using a regular expression.
  • Write a JavaScript function that validates an SSN format (e.g., XXX-XX-XXXX) and returns a boolean.
  • Write a JavaScript function that cleans up an input string by removing spaces before validating it as an SSN.
  • Write a JavaScript function that tests multiple SSN inputs and flags any that do not conform to the expected pattern.

Improve this sample solution and post your code through Disqus.

Previous: Write a JavaScript function to check whether a given value is Canada Post Code or not.
Next: Write a JavaScript function to check whether a given value is hexadecimal value or not.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.