Page MenuHomePhorge

test_circular.js
No OneTemporary

Size
249 B
Referenced Files
None
Subscribers
None

test_circular.js

const obj = {};
obj.self = obj;
console.log('Simple circular:', obj);
const a = { name: 'a' };
const b = { name: 'b' };
a.b = b;
b.a = a;
console.log('Mutual circular:', a);
const arr = [1, 2, 3];
arr.push(arr);
console.log('Array circular:', arr);

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 10:01 AM (1 h, 21 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
518580
Default Alt Text
test_circular.js (249 B)

Event Timeline