本文介绍了定义“循环数据结构".的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

JSON网站上,

这是什么意思?有人可以给我一个用Javascript这样的数据结构的例子吗?

What does it mean by this? Can someone give me an example of such a data structure in Javascript?

推荐答案

var cyclic = {};
cyclic.somekey = cyclic;
cyclic.another = "Hello world!";

现在您可以执行此操作,例如:

Now you can do this, for example:

alert(cyclic.somekey.somekey.somekey.another);

这篇关于定义“循环数据结构".的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-09 17:59