Skip to content

Instantly share code, notes, and snippets.

@Raagh
Last active April 13, 2020 19:57
Show Gist options
  • Save Raagh/fa72fe34a2d8baf1ab559f8e0e2bcc42 to your computer and use it in GitHub Desktop.
Save Raagh/fa72fe34a2d8baf1ab559f8e0e2bcc42 to your computer and use it in GitHub Desktop.
Snake Game Functional JavaScript Part 0 - Point
const point = (x, y) => {
return {
x: x,
y: y,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment