The
util.types.isBooleanObject() method is an inbuilt application programming interface of
util module which is primarily designed to support the needs of
Node.js own internal APIs.
The
util.types.isBooleanObject() method is used to determine whether the value is a Boolean object or not.
Syntax:
util.types.isBooleanObject( value )
Parameters: This method accepts a single parameters
value which holds any valid JavaScript data types like Boolean, Null, Number, Object, etc.
Return value: It returns a Boolean value i.e. returns
true if value is a Boolean object otherwise it returns
false.
Below examples illustrate the use of
util.types.isBooleanObject() method in Node.js:
Example 1:
Output:
false
false
true
Example 2:
Output:
true
true
false
Note: The above program will compile and run by using the
node index.js command.
Reference: https://nodejs.org/dist/latest-v13.x/docs/api/util.html#util_util_types_isbooleanobject_value