Skip to content

Instantly share code, notes, and snippets.

@colinjfw
Last active February 24, 2019 02:07
Show Gist options
  • Save colinjfw/e9be8be25ca5f30095a4cd02efeae3c4 to your computer and use it in GitHub Desktop.
Save colinjfw/e9be8be25ca5f30095a4cd02efeae3c4 to your computer and use it in GitHub Desktop.
function moveAsCoord(move, head) {
switch (move) {
case 'up':
return {x: head.x, y: head.y-1};
case 'down':
return {x: head.x, y: head.y+1};
case 'left':
return {x: head.x-1, y: head.y};
case 'right':
return {x: head.x+1, y: head.y};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment