Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Mayank Agarwal has Published 373 Articles
Mayank Agarwal
99 Views
The util.types.isFloat32Array() method checks whether the passed value is a builtin Float32Array instance or not. If the above condition is satisfied, it returns True, else False.Syntaxutil.types.isFloat32Array(value)ParametersIt takes a single parameter −value − This input value takes input for the required parameter and checks if it's a Float32-Array instance or not.It ... Read More
Mayank Agarwal
634 Views
The util.types.isDate() method checks whether the passed value is a built-in Date instance or not. If the above condition is satisfied, it returns True, else False.Syntaxutil.types.isDate(value)ParametersIt takes a single parameter −value − This input value takes input for the required parameter and checks if it's a Date instance or not.It ... Read More
Mayank Agarwal
111 Views
The util.getSystemErrorName() method is used for returning the string name of the numeric error code that is returned from the Node.js API. There is a mapping between the error codes and error names which is platform-dependent.Syntaxutil.getSystemErrorName(err)ParametersIt takes a single parameter −err −This parameter takes input as a numeric value that ... Read More
Mayank Agarwal
82 Views
The util.types.isFloat64Array() method checks whether the passed value is a builtin Float64Array instance or not. It returns True if the above condition holds, else False.Syntaxutil.types.isFloat64Array(value)ParametersIt takes only one parameter −value − This input value takes input for the required parameter and checks if it is a Float64Array instance or not.It ... Read More
Mayank Agarwal
159 Views
The util.types.isProxy() method checks whether the passed value is a built-in Proxy instance or not. If the above condition is satisfied, it returns True, else False.Syntaxutil.types.isProxy(value)ParametersIt takes only one parameter −value − This input value takes input for the required parameter and checks if it is a Proxy instance or ... Read More
Mayank Agarwal
103 Views
The util.types.isArrayBufferView() checks whether the passed value is an instance of the ArrayBuffer views, or typed array objects like DataView. This method returns True if the above conditions are satisfied, else it returns False.Syntaxutil.types.isArrayBufferView(value)ParametersIt takes only one parameter −value − This input parameter takes input for the required datatype and ... Read More
Mayank Agarwal
119 Views
The util.types.isInt16Array() method checks whether the passed value is a built-in Int16Array instance or not. If the above condition is satisfied, it returns True, else False.Syntaxutil.types.isInt16Array(value)ParametersIt takes only one parameter −value − This input value takes input for the required parameter and checks if it's an Int16Array instance or not.It ... Read More
Mayank Agarwal
153 Views
The util.types.isAsyncFunction() checks whether the passed value is an async function or not. If the above condition holds, it returns True, else False.Syntaxutil.types.isAsyncFunction(value)ParametersIt takes only one parameter −value − This input value takes input for the required parameter and checks if it is an async function or not.It returns True ... Read More
Mayank Agarwal
5K+ Views
The util.promisify() method basically takes a function as an input that follows the common Node.js callback style, i.e., with a (err, value) and returns a version of the same that returns a promise instead of a callback.Syntaxutil.promisify(original)ParametersIt takes only one parameter −original −This parameter takes an input for the function ... Read More
Mayank Agarwal
1K+ Views
A computer system works upon bits. In the same way, a computer reads files into binary representation which is why we need to convert text characters into binary data. Most popular character encoding types types are: ASCII and Unicode. Unicode has two further types: utf8 and utf16.SyntaxdetectCharacterEncoding(filePath)Setting Up the Environment ... Read More