Skip to content
New issue

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

spread operator #108

Open
sedationh opened this issue Nov 4, 2024 · 0 comments
Open

spread operator #108

sedationh opened this issue Nov 4, 2024 · 0 comments

Comments

@sedationh
Copy link
Owner

在 JavaScript 中,展开操作符(spread operator)无法处理nullundefined值。具体来说,这些值在使用展开操作符时会导致不同的行为:

对于数组展开

当尝试使用展开操作符展开nullundefined时,会抛出错误,因为这两个值不是可迭代的(iterable)对象。例如:

console.log([...undefined]); // TypeError: undefined is not iterable
console.log([...null]);      // TypeError: null is not iterable

对于对象展开

与数组不同,当使用展开操作符对对象进行展开时,如果对象是nullundefined,JavaScript 会优雅地处理这一情况,不会抛出错误,而是忽略这些值。例如:

const foo = {...undefined}; // 结果是 {}
const bar = {...null};      // 结果是 {}

在这种情况下,展开操作符不会将nullundefined的属性包含在新对象中。

验证

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
{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant