mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
9 lines
225 B
Markdown
9 lines
225 B
Markdown
---
|
|
id: 67198605-05a4-4a1b-9083-d4e445b38344
|
|
title: JavaScript RangeError
|
|
---
|
|
|
|
``` javascript
|
|
// Call console with too many arguments
|
|
console.log.apply(console, new Array(1000000000)); // RangeError: Invalid array length
|
|
```
|