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

7 lines
155 B
JavaScript

> if (!x && !y) {
"Both strings are empty!";
} else {
"At least one of the strings is nonempty.";
}
'At least one of the strings is nonempty.'