Determines if a value is a string.
isString('abc'); // => trueisString(123); // => false Copy
isString('abc'); // => trueisString(123); // => false
The value to check.
A boolean indicating whether the value is a string or not.
Determines if a value is a string.
Example