Quartz 5

Home

❯

Org-roam

❯

Destructuring Iterables

Destructuring Iterables

Nov 03, 20201 min read

Introduction

This was introduced in ES6. Destructuring JavaScript Iterables works on the same principle as Destructuring Arrays.

Syntax

const [x,...y] = 'abc'
console.log(x, y) // a ['b', 'c']

Graph View

  • Introduction
  • Syntax

Backlinks

  • Destructuring Arrays
  • ES6
  • JavaScript Destructuring
  • JavaScript Iterables

Created with Quartz v5.0.0 © 2026

  • GitHub
  • Discord Community