Skip to content

Instantly share code, notes, and snippets.

@odino
Created April 15, 2018 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save odino/7e24da207207010c22e4ac7a76303a64 to your computer and use it in GitHub Desktop.
Save odino/7e24da207207010c22e4ac7a76303a64 to your computer and use it in GitHub Desktop.
class DumbMap {
constructor() {
this.list = []
}
...
set(x, y) {
this.list.push([x, y])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment