For all iterable typed data, we can iterator through the spread operator or for...of
// Set =>
[...Set]
// String
[...String]
// Array
[...Array]
// Generator/Iterable
[...Generator]
For all iterable typed data, we can iterator through the spread operator or for...of
// Set =>
[...Set]
// String
[...String]
// Array
[...Array]
// Generator/Iterable
[...Generator]