gpt4 book ai didi

javascript - 我为什么要使用 Array.toSource?

转载 作者:行者123 更新时间:2023-11-30 08:36:05 28 4
gpt4 key购买 nike

显然有一个非标准的方法 Array , toSource .根据示例..

var alpha = new Array('a', 'b', 'c');

alpha.toSource(); // ['a', 'b', 'c']

.. 它似乎与 JSON.stringify 做同样的事情:

var alpha = new Array('a', 'b', 'c');

JSON.stringify(alpha);

那么我为什么要使用 Array.toSource

最佳答案

你不知道。 toSource()a holdover from the Netscape days并且已经过时多年。然而,在我们现在所知的 JSON 出现之前,它是将对象转换为其源表示的唯一内置方法,更不用说相应的反序列化 API 出现了。

关于javascript - 我为什么要使用 Array.toSource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31348442/

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