Underscore.js _.isArrayBuffer() Function (original) (raw)
Last Updated : 14 Oct, 2020
Underscore.js is a JavaScript library that provides a lot of useful functions that help in the programming in a big way like the map, filter, invoke, etc even without using any built-in objects.
The _.isArrayBuffer() function is an inbuilt function in Underscore.js library of JavaScript which is used to check if the stated object is an ArrayBuffer or not.
Syntax:
_.isArrayBuffer(object)
Parameters: It accepts a single parameters which is specified below:
- object: It is the object stated.
Return Value: This method returns true if the stated object is an ArrayBuffer else it returns false.
Example 1:
Output:
true
Example 2:
Output:
false
Reference: https://underscorejs.org/#isArrayBuffer
Similar Reads
- Underscore.js _.isArray() Function The Underscore.js is a JavaScript library that provides a lot of useful functions like the map, filter, invoke, etc even without using any built-in objects. The _.isArray() function is used to find whether the passed argument is an array or not. An array is a set of variables, constants, and special 3 min read
- Underscore.js _.isTypedArray() Function Underscore.js is a JavaScript library that provides a lot of useful functions that help in the programming in a big way like the map, filter, invoke, etc even without using any built-in objects. The _.isTypedArray() function is an inbuilt function in Underscore.js library of JavaScript which is used 1 min read
- Underscore.js _.isError() Function Underscore.js is a library in javascript that makes operations on arrays, string, objects much easier and handy. _.isError() function is used to check whether the given object is javascript Error Object or not. Note: It is very necessary to link the underscore CDN before going and using underscore f 2 min read
- Underscore.js _.isArguments() Function 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 1 min read
- Underscore.js _.isDataView() Function Underscore.js is a JavaScript library that provides a lot of useful functions that help in the programming in a big way like the map, filter, invoke, etc even without using any built-in objects. The _.isDataView() function is an inbuilt function in Underscore.js library of JavaScript which is used t 1 min read
- Underscore.js _.isMap() Function Underscore.js is a library in javascript that makes operations on arrays, string, objects much easier and handy. _.isMap() function is used to check whether the given object is javascript Map or not. Note: It is very necessary to link the underscore CDN before going and using underscore functions in 2 min read
- Underscore.js _.isSet() Function Underscore.js is a library in javascript that makes operations on arrays, string, objects much easier and handy. _.isSet() function is used to check whether the given object is javascript set or not. When linking the underscore.js CDN The "_" is attached to the browser as global variable. Syntax: _. 2 min read
- Underscore.js _.isObject() Function Underscore.js_.isObject() function is used to check whether the given object is an object or not. It returns a Boolean value True if the given object element is an object and returns False otherwise. JavaScript functions and arrays are objects, while the strings and numbers are not objects. Syntax: 1 min read
- Underscore.js _.isSymbol() Function Underscore.js is a library in javascript that makes operations on arrays, string, objects much easier and handy. _.isSymbol() function is used to check whether the given object is javascript Symbol Object or not. Note: It is very necessary to link the underscore CDN before going and using underscore 2 min read
- Underscore.js _.isBoolean() Function The Underscore.js is a JavaScript library that provides a lot of useful functions like the map, filter, invoke, etc even without using any built-in objects. The _isBoolean function is used to find whether the element passed is true/ false or something else. Boolean is a subset of algebra that is use 3 min read