Skip to content

Instantly share code, notes, and snippets.

@odino
Created April 15, 2018 17:47
Embed
What would you like to do?
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