RangeErrorRangeError
A value is not within the expected range, such as an invalid array length or exceeding the call stack size.
ERR_INVALID_ARG_TYPEA Node.js API received an argument of the wrong type.
You passed an argument of the wrong type to a Node.js built-in API. For example, passing a number where a string is expected, or null where a Buffer is required. The error message specifies the expected and received types.
Check the error message for the expected type. Convert the argument to the correct type before passing it. Verify your variable contains the expected value and is not accidentally undefined or null.
RangeErrorA value is not within the expected range, such as an invalid array length or exceeding the call stack size.
TypeError: Method called on incompatible receiverA method was called with a 'this' value that is not the expected type.
ENOTDIRA directory operation was attempted on a path that is not a directory.
DOMException: QuotaExceededErrorA storage operation exceeded the available quota for localStorage, IndexedDB, or other browser storage.
SyntaxErrorThe JavaScript engine encountered code that does not conform to the language syntax.
SyntaxError: Applying delete to unqualified name in strict modeThe delete operator was used on a plain variable name in strict mode, which is not allowed.