Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password I by abvas
import assert from "assert";
function isAcceptablePassword(password: string): boolean {
return 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 23, 2020