const obj = Array.from("abcdefghiljklmnopqrstuvwxyz").reduceRight((acc, c) => ({[c]: acc}));
Initializing...
console.log(obj);
console.log(JSON.stringify(obj));
You can edit these tests or add more tests to this page by appending /edit to the URL.