Checks if the provided value is a string.
const result1 = isString('Hello, world!'); // trueconst result2 = isString(123); // falseconst result3 = isString('123'); // trueconst result4 = isString(null); // false
The value to check.
Checks if the provided value is a string.
Example