返回介绍

assign

发布于 2019-05-31 13:13:06 字数 1386 浏览 891 评论 0 收藏 0

Returns an ObjectLikeSequence whose elements are the combination of this sequence and another object. In the case of a key appearing in both this sequence and the given object, the other object's value will override the one in this sequence.

Signature

ObjectLikeSequence.assign = function(other) { /*...*/ }
ObjectLikeSequence.assign = function assign(other) {
  return new AssignSequence(this, other);
}
NameType(s)Description
otherObject

The other object to assign to this sequence.

returnsObjectLikeSequence

A new sequence comprising elements from this sequence plus the contents of other.

Examples

Lazy({ "uno": 1, "dos": 2 }).assign({ "tres": 3 })     // sequence: { uno: 1, dos: 2, tres: 3 }
Lazy({ foo: "bar" }).assign({ foo: "baz" });           // sequence: { foo: "baz" }
Lazy({ foo: 'foo' }).assign({ foo: false }).get('foo') // false

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文