Quartz 5

Home

❯

Org-roam

❯

JavaScript Sets

JavaScript Sets

Aug 05, 20261 min read

JavaScript Sets

  • Introduction
  • Example

Introduction

A [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Set]\[Set]] is a collection of unique elements.

Example

const arr = [5, 1, 5, 7, 7, 5];
const unique = [...new Set(arr)]; // [ 5, 1, 7 ]

Graph View

  • JavaScript Sets
  • Introduction
  • Example

Created with Quartz v5.0.0 © 2026

  • GitHub
  • Discord Community