Underscore.js _.isArguments() Function (original) (raw)

Last Updated : 01 Aug, 2023

The _.isArguments() function is used to check whether the given object is an argument or not. It returns a Boolean value True if the given object is an argument and False otherwise.

Syntax:

_.isArguments( object )

Parameters: This function accepts one parameter as mentioned above and described below:

Return Value: It returns True if the given object is an arguments and False otherwise.

Example 1:

Output:

Example 2:

Output:

Similar Reads