gpt4 book ai didi

javascript - 是否有一个 javascript 对象等同于 python 的 pop() on dicts?

转载 作者:太空狗 更新时间:2023-10-30 01:52:50 25 4
gpt4 key购买 nike

<分区>

我正在寻找与 Python 的 {dict}.pop() 等效的 JavaScript。我看到 JS 有一个 shift() 和 pop(),但是它们是硬编码的,用于数组中的第一个和最后一个位置。是否有我可以指定对象位置的等效项?

我可以在 Python 中做什么的示例:

>>> foxx = {'player':{'name':'Jimmie','last':'Foxx','number':3}, 'date':'2018-01-01', 'homeruns':3,'hits':4}
>>> player = foxx.pop('player')
>>> foxx
{'date': '2018-01-01', 'homeruns': 3, 'hits': 4}
>>> player
{'name': 'Jimmie', 'last': 'Foxx', 'number': 3}

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