2048 Game Free

About This Site

2048gamefree.com exists because the most-played puzzle game on the web deserved a version without the baggage. The 2048 you find on big game portals is usually a twelve-year-old copy of the original code, wrapped in iframes, prerolls, and interstitial ads - and still missing the features players ask for most.

What we built instead

  • A from-scratch engine with the original's exact rules: 90/10 spawn odds, one merge per tile per move, faithful game-over detection. It is covered by an automated test suite - most clones get at least one of these rules wrong.
  • Unlimited undo, free, on every board - even after game over.
  • Every board size: 3x3 through 16x16, plus 1024, 4096, 8192 and 16384 targets, rule-benders like reverse and Fibonacci, and themed boards, each with its own saved game and best score.
  • No ads, no accounts, no ad-tech identifiers. Your games save in your own browser and never leave your device. A single analytics script counts page views, and the privacy policy says exactly what it sees.
  • Fast everywhere: the game is a few kilobytes of plain JavaScript, renders without WebGL, works offline, and plays smoothly on old phones and school Chromebooks.

How we know the rules are right

"Faithful rules" is easy to claim and easy to get wrong, so it is worth saying how it was checked. The engine is tested against a second, independently written implementation of the same rules: hundreds of thousands of randomly generated boards are collapsed by both and compared cell by cell, across every board size we ship, all four directions, and all three rule sets. Any disagreement in the resulting board, in whether the move counted, or in the score would fail the build.

The same suite checks the parts players actually notice. Game over is compared against brute force, so the board can never declare a loss while a legal merge remains. Spawn odds are measured over 200,000 draws and land on 10% for the rare tile, with the spawn position spread evenly across the empty cells. And the specific case that trips up most clones is pinned down explicitly: a row of 2-2-4 swiped together becomes 4-4, never 8, because a tile created by a merge is finished for that move.

What we have not solved

A 16x16 board on a small phone is cramped no matter how carefully the tiles are drawn, so that board is better on a larger screen. Undo reaches back through your recent moves rather than infinitely far. And the game deliberately stores everything locally, which means your scores live in one browser on one device: clearing site data clears them, and there is no account to sync them from. Those are trade-offs we chose, not oversights, and we would rather name them here than let you discover them.

Credit where it belongs

2048 was created in March 2014 by Gabriele Cirulli, who released his version as open source and inspired thousands of implementations - it was itself inspired by the games 1024 and Threes. This site is an independent project: we did not copy the original code, but we did faithfully implement its rules, and we happily point anyone toward the game's history and mechanics.

Questions or feedback? We read everything sent to [email protected].