4096
Use the arrow keys to move and merge the tiles to get the 4096 tile
Game Over!
You win!
Customize the Gameplay Algorithm Here!
if(canMove('down'))
{
move('down');
move('left');
}
else if(canMove('left'))
{
move('left');
}
else if(canMove('right'))
{
move('right');
}
else if(canMove('up'))
{
move('up');
move('down');
}