Underscore.js _.isString() Function (original) (raw)
Last Updated : 01 Aug, 2023
The _.isString() function is used to check whether the given object element is string or not.Syntax:
_.isString( object )
Parameters: This function accepts single parameter as mentioned above and described below:
- object: It contains the value of object that need to be check whether it is an string or not.
Return Value: It returns a Boolean value True if given object element is string, False otherwise.Example 1:
html `