📅  最后修改于: 2022-03-11 15:02:28.751000             🧑  作者: Mango
//Occurs when passing an invalid value to a function.
let nums = Array(-1);
/*The constructor function Array(n) creates an empty array of length n.
It is not possible to create an array with negative length, so the code
results in RangeError: Invalid array length.*/