Games

2048

Use the arrow keys or swipe. Tiles with the same number merge when they collide — get one to 2048. The game keeps going afterwards if you want to chase 4096.

Score0
Best0

Arrow keys, WASD, or swipe to move.

The whole game is a single small JavaScript file served from this site. There is no account, no server and no tracking of how you play — and once the page has loaded it works offline.

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.

Frequently asked questions

What is the best strategy to win 2048?

Choose one corner — bottom-left works well — and never let your largest tile leave it. Play mostly down and left, use right occasionally, and avoid up almost entirely. Build the bottom row as a descending chain such as 512-256-128-64 so merges cascade.

Why should I never press up in 2048?

Because up lifts your largest tile out of its corner. Once the anchor moves, the ordered chain along the bottom row breaks and large tiles scatter into the middle where they cannot merge. One up press can undo twenty good moves.

Is a 4 or a 2 more likely to spawn?

A 2 appears 90% of the time and a 4 the other 10%. That ratio matters strategically: a badly placed 4 is harder to clear because it needs another 4 to merge with, and 4s are rare.

Does this version work offline?

Yes. Once the page has loaded, the game is entirely local — no network requests, no server. You can switch to aeroplane mode and keep playing.

Is my best score saved?

For the current browser session only. It clears when you close the browser. There is no account or leaderboard, since that would require identifying you.

What is the highest tile possible in 2048?

131072 in theory, which requires a near-perfect game and considerable luck with tile placement. A strong human player realistically tops out around 8192. Reaching 2048 itself is achievable more than half the time with corner discipline.