Skip to content

Instantly share code, notes, and snippets.

@alexsoyes
Created June 20, 2023 10:00
Show Gist options
  • Save alexsoyes/6f4a4c7682903830d7b41f0ca2c5688c to your computer and use it in GitHub Desktop.
Save alexsoyes/6f4a4c7682903830d7b41f0ca2c5688c to your computer and use it in GitHub Desktop.
Exemple TypeScript : Set
const set = new Set<number>();
set.add(1);
set.add(2);
set.add(3);
console.log(set.has(2)); // Output: true
console.log(set.size); // Output: 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment