Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Acceptable Password_1 solution in Uncategorized category for Acceptable Password I by Elena_Korljukova
import assert from "assert";
var isAcceptablePassword = password => password.length>6;
console.log('Example:');
console.log(isAcceptablePassword('short'));
// These "asserts" are used for self-checking
assert.equal(isAcceptablePassword('short'), false);
assert.equal(isAcceptablePassword('muchlonger'), true);
assert.equal(isAcceptablePassword('ashort'), false);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
June 8, 2020