Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Acceptable Password I by NohTaeHwan
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!");
April 27, 2020
Comments: