Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
const { a: { b: { c } } } = { a: { b: { c: 42 } } }; // c = 42 // Safe nested with defaults const { data: { user: { name = "anon" } = {} } = {} } = response; // Mixed array + object const [{ id, title }, ...others] = articles;
Result
Open