Files
learn_enough_javascript_cod…/Listing_2.6.js
T
2022-01-12 14:58:42 -08:00

6 lines
112 B
JavaScript

> let password = "foo";
> if (password.length < 6) {
"Password is too short.";
}
'Password is too short.'