We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在 JavaScript 中,展开操作符(spread operator)无法处理null和undefined值。具体来说,这些值在使用展开操作符时会导致不同的行为:
null
undefined
当尝试使用展开操作符展开null或undefined时,会抛出错误,因为这两个值不是可迭代的(iterable)对象。例如:
console.log([...undefined]); // TypeError: undefined is not iterable console.log([...null]); // TypeError: null is not iterable
与数组不同,当使用展开操作符对对象进行展开时,如果对象是null或undefined,JavaScript 会优雅地处理这一情况,不会抛出错误,而是忽略这些值。例如:
const foo = {...undefined}; // 结果是 {} const bar = {...null}; // 结果是 {}
在这种情况下,展开操作符不会将null或undefined的属性包含在新对象中。
const und = undefined const nul = null try { const array = [...nul, ...und] console.log(array) } catch (error) { console.log("array", error.message) } try { const obj = { ...nul, ...und } console.log(obj) } catch (error) { console.log("obj", error.message) }
array Spread syntax requires ...iterable not be null or undefined {}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在 JavaScript 中,展开操作符(spread operator)无法处理
null
和undefined
值。具体来说,这些值在使用展开操作符时会导致不同的行为:对于数组展开
当尝试使用展开操作符展开
null
或undefined
时,会抛出错误,因为这两个值不是可迭代的(iterable)对象。例如:对于对象展开
与数组不同,当使用展开操作符对对象进行展开时,如果对象是
null
或undefined
,JavaScript 会优雅地处理这一情况,不会抛出错误,而是忽略这些值。例如:在这种情况下,展开操作符不会将
null
或undefined
的属性包含在新对象中。验证
The text was updated successfully, but these errors were encountered: