Password Security I.

Challenge 📝

Resources 📚

Given are two strings password and password_repeat. Check if the password is secure by the following critera:
- both passwords must match
- password must be at least 20 chars

Return true only if all criteria are met, otherwise return false.

function checkPassword(password, password_repeat) {
}
Test Cases
Console Logs
JS Errors
Run Code!
flag