How to play 2048
The board is a four-by-four grid. Every move slides every tile as far as it can go in one direction. When two tiles of the same number collide, they merge into one tile of double the value, and that value is added to your score. After each move a new tile appears in a random empty cell — a 2 ninety percent of the time, a 4 the rest.
The goal is a tile showing 2048. You lose when the board is full and no two adjacent tiles match, so nothing can move.
Use the arrow keys or WASD on a keyboard, or swipe in any direction on a touchscreen. The undo button steps back one move — one, not several, deliberately, so it rescues a slip of the finger without turning the game into a puzzle you can brute-force.
The strategy that actually works
2048 rewards discipline over cleverness, and almost all of that discipline comes down to one rule.
Pick a corner and never let your largest tile leave it. Bottom-left is the usual choice. Every serious game of 2048 is built around this. Your biggest tile anchors the corner, the next biggest sit beside it, and the board stays organised instead of scattering large tiles across the middle where they can never merge.
Only use two directions most of the time. If your anchor is bottom-left, play down and left almost exclusively. Down keeps the heavy tiles pressed into the bottom row; left keeps them pressed against the side. Use right occasionally when neither works. Use up essentially never — it is the move that lifts your anchor tile out of the corner, and one careless up press can undo twenty good moves.
Build a descending row. Aim for the bottom row reading something like 512, 256, 128, 64 from the corner outward. That arrangement is a chain: merge the 64 with another 64 to make 128, which merges with the existing 128 to make 256, and so on. A single well-built chain can cascade into an enormous score in one move.
Keep the bottom row full. If the bottom row has a gap, a down press cannot fill it from the side and a left or right press may pull your anchor along the row. A full bottom row means a down press is always safe.
Common mistakes
The most damaging habit is pressing up "just once" to unstick something. It relocates your largest tile, and recovering usually costs more than the move saved. If down and left both do nothing, press right — and be ready to press left immediately afterwards.
The second is chasing every possible merge. Merging two 4s in the top-right corner gains you eight points and clutters the region you should be keeping empty. Only merge when it serves the chain.
The third is playing fast. 2048 has no timer. Every move is fully reversible in your head before you commit. Look at where the new tile could appear before you press, not after.
Where the game came from
2048 was written in March 2014 by Gabriele Cirulli, a nineteen-year-old Italian developer, over a single weekend. He built it as an exercise, based on two earlier games — 1024 by Veewo Studio and Threes! by Asher Vollmer and Greg Wohlwend. He released it free and open-source, and within a week it had tens of millions of players.
The design lesson people still cite is how much depth comes from how little: one gesture, one merge rule, one random spawn. There is no tutorial because none is needed, and yet the skill ceiling is high enough that players still argue about optimal strategy a decade later.
Can 2048 be beaten every time?
No. Randomness genuinely can defeat you — a badly placed 4 at the wrong moment can wreck a good board. But with corner discipline, a human player should reach 2048 well over half the time, and the losses come mostly from broken discipline rather than bad luck. The theoretical maximum tile is 131072, which requires a nearly perfect game and considerable luck; 8192 is a realistic ceiling for a strong human player.
This version keeps playing after you reach 2048, so you can chase 4096 without starting again. Your best score is remembered for the current browser session and cleared when you close the browser — there is no account and no leaderboard, because that would mean tracking who you are.