RangeError: Invalid array lengthRangeError: अमान्य array length
Array को अमान्य length से बनाया गया, जैसे negative number या non-integer।
AggregateErrorएक error जो कई errors को wrap करती है, आमतौर पर तब throw होती है जब Promise.any() की सभी promises reject हो जाती हैं।
Promise.any() को promises की array के साथ call किया गया और उन सभी ने reject कर दिया। AggregateError में सभी individual rejection reasons उसकी .errors property में हैं। एक साथ कई errors रिपोर्ट करने के लिए इसे manually भी throw किया जा सकता है।
Individual failure reasons देखने के लिए .errors property access करें। सुनिश्चित करें कि आपके Promise.any() call में कम से कम एक promise resolve होने का मौका हो। Array में प्रत्येक error को अलग-अलग handle करें।
Promise.any([Promise.reject('a'), Promise.reject('b')]); // AggregateErrorRangeError: Invalid array lengthArray को अमान्य length से बनाया गया, जैसे negative number या non-integer।
ERR_DLOPEN_FAILEDएक native addon (C++ .node फ़ाइल) लोड होने में विफल रही।
SyntaxError: Unexpected end of inputParser input के अंत तक पहुँच गया जबकि अभी और code अपेक्षित था, सामान्यतः unclosed brackets या strings के कारण।
URIErrorकिसी global URI handling function (decodeURIComponent, encodeURI) को malformed URI मिला।
ERR_WORKER_OUT_OF_MEMORYWorker थ्रेड की मेमोरी समाप्त हो गई।
ETIMEDOUTएक कनेक्शन या ऑपरेशन टाइमआउट हो गया क्योंकि रिमोट होस्ट ने समय पर रिस्पॉन्ड नहीं किया।