unction _one(pwd) Create a JavaScript function that meets the following requirements:
Hello I needed some with with this JavaScript problem please
function _one(pwd)
Create a JavaScript function that meets the following requirements:
• Is passed a string representing a potential password
• The function determines if the password meets the following requirements
o The length of the password is between 8 – 12 characters
o Contains at least 1 number (numeric character)
o Contains at least 1 special character
▪ Special characters are punctuation characters that are present on standard keyboard namely any character encapsulated within the following double quotes
“(!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~)”
o Contains at least 1 capital letter
• The function should NOT employ the use of regular expressions to solve the problem
• The function also displays the result (console log) of its password validation as illustrated below.
• The function returns a Boolean back to the caller indicating valid or not.
![Function 1: Password Checker
function
one (pwd)
Create a JavaScript function that meets the following requirements:
Is passed a string representing a potential password
The function determines if the password meets the following requirements
The length of the password is between 8 – 12 characters
Contains at least 1 number (numeric character)
Contains at least 1 special character
Special characters are punctuation characters that are present on standard keyboard
namely any character encapsulated within the following double quotes
"(I"#$%&' ()*+,-l:;<=>?@[\]^_` {)}-)*
Contains at least 1 capital letter
The function should NOT employ the use of regular expressions to solve the problem
The function also displays the result (console log) of its password validation as illustrated below.
The function returns a Boolean back to the caller indicating valid or not.
Calling _one(labc!Caa)
The password 1abc!Caa is valid
Calling _one(labccCa)
The password labccCa is NOT valid
Calling _one(11bc!aaa)
The password 11bc!aaa is NOT valid
Calling _one(labccDdfa)
The password 1abccDdfa is NOT valid](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ffd866b8f-4235-4ebb-95b2-5e7c81feb65c%2Fa513b487-cc64-48e7-9a78-2b59812d1eba%2F29b5bbs3_processed.png&w=3840&q=75)

Step by step
Solved in 2 steps with 1 images









