Logging deeply nested objects

Benchmark publishedon

Setup

const obj = Array.from("abcdefghiljklmnopqrstuvwxyz").reduceRight((acc, c) => ({[c]: acc}));

Test Runner

Initializing...

Testing in
Test CaseOps/sec
log
console.log(obj);
ready
stringify
console.log(JSON.stringify(obj));
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

Revision 1
publishedon