Determine if input is a string with a length greater than 0.
input
isStringWithLength('hello'); // trueisStringWithLength(''); // false Copy
isStringWithLength('hello'); // trueisStringWithLength(''); // false
Determine if
inputis a string with a length greater than 0.