Skip to content

Instantly share code, notes, and snippets.

@nivrith
Created November 20, 2020 03:54
Show Gist options
  • Select an option

  • Save nivrith/82a4b306fc5770ec8c39f868adf34a05 to your computer and use it in GitHub Desktop.

Select an option

Save nivrith/82a4b306fc5770ec8c39f868adf34a05 to your computer and use it in GitHub Desktop.
Make your own Custom Iterables in JavaScript
export class Queue<T> {
constructor(private length: number, private data: T[] = []) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment