gpt4 book ai didi

javascript - Object.assign 和 just assign 的区别

转载 作者:IT老高 更新时间:2023-10-28 23:08:11 29 4
gpt4 key购买 nike

我想知道这之间的区别:

Object.assign(otherObject, {
someNewProperty: ''
});

otherObject.someNewProperty = '';

还有..哪个更快?

谢谢。

最佳答案

The Object.assign() method is used to copy the values of all enumerable own properties from one or more source objects to a target object. It will return the target object.

otherObject.someNewProperty = ''; 是一种直接为对象的某些属性赋值的方法。

显然 Object.assign 模式要慢得多:jsperf.com/assign-vs-equals

关于javascript - Object.assign 和 just assign 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35241790/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com