Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active August 25, 2017 18:10
Show Gist options
  • Save abinavseelan/f25ad9b14c20bf9189153d96015051e0 to your computer and use it in GitHub Desktop.
Save abinavseelan/f25ad9b14c20bf9189153d96015051e0 to your computer and use it in GitHub Desktop.
Medium - DS in Javascript - Building the constructor
function Queue () {
this.values = [];
this.count = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment