w3resource

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

JavaScript validation with regular expression: Exercise-15 with Solution

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

Sample Solution:-

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript function to check whether a given value is A social security number or not</title>
</head>
<body>

</body>
</html>

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"));

Sample 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.


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.