Global Araç
2048 Game
Skor
0
En iyi
0
Masaüstünde ok tuşlarını / WASD'yi kullanın, mobilde kaydırın. Taşlar kayar; eşleşen taşlar birleşir. Hedef: 2048'e ulaşmak için birleştirin. En iyi skor tarayıcınızda saklanır.
The classic 2048 sliding puzzle. Slide tiles in any of four directions on a 4×4 grid; matching tiles merge into a tile with double the value (2+2=4, 4+4=8, 8+8=16…). The goal: reach a 2048 tile. Most players take 30-60 minutes their first time; experienced players reach 2048 in 5-15 minutes and many push past it to 4096, 8192, or even 16384 if the board allows.
Originally created in 2014 by Italian developer Gabriele Cirulli as a weekend project, 2048 became a massive viral hit — over 4 million people played it in the first week. The original is open-source and inspired countless variants (3D 2048, hexagonal 2048, Doge 2048, Flappy 2048). The simplicity is the appeal: one rule (matching tiles merge), four inputs, deep strategic depth that emerges from the constraints.
Best score is saved to your browser's local storage — no account, no cloud sync, no leaderboard server. Each session starts fresh; if you want to keep building on the same game, leave the tab open. The randomness (which empty cell gets the new tile, whether it's a 2 or a 4) uses your browser's Math.random — same seed-style unpredictability as the original.
Nasıl Kullanılır
- Arrow keys (↑↓←→) or WASD slide all tiles in that direction. Tiles with the same value that collide merge into a single tile of double the value.
- Each move spawns a new tile (90% chance of 2, 10% chance of 4) in a random empty cell.
- Game ends when no moves are possible — every cell is filled and no adjacent tiles match.
- First goal: reach a 2048 tile. After that, keep going — the game continues past 2048 for as long as you can avoid filling the board.
- Strategy tip: keep your highest tile pinned in a corner and build a 'snake' — descending values along the rows/columns leading away from it.
Ne Zaman Kullanılır
- 5-minute brain break during a work day.
- Long-distance commute or wait — phone-friendly play.
- Quick demo of an addictive simple game design.
- Practicing strategic thinking under uncertainty (each move has a known outcome plus a random tile placement).
Ne Zaman Kullanılmaz
- Anytime you don't have ~30 minutes — once you're invested in a high-scoring board, it's hard to walk away.
- When you want a multiplayer game — 2048 is single-player by design.
- When you want time pressure — there's no clock; you can think as long as you like per move. For a timed variant, use a different game.
Yaygın Kullanım Senaryoları
- Verifying a number or output before passing it on
- Quick use during a typical workday
- Pre-decision sanity-check on inputs and outputs
- Educational use — demonstrating the underlying concept
Sık Sorulan Sorular
Can you go past 2048?
Yes — the game keeps going. Some players push to 4096, 8192, or even 16384 if the board allows. The theoretical maximum on a 4×4 board is 131,072 (2^17), though that requires nearly perfect play. Best practical strategy: keep your highest tile pinned in a corner.
What's the best strategy?
The 'corner snake' strategy: pick a corner (most players go bottom-right or bottom-left), keep your highest tile there permanently, build a descending sequence of tiles snaking back across the board. Avoid moves that disturb the corner; use opposite-direction moves only when forced. With practice this strategy reliably reaches 2048 and often 4096.
Is this the same 2048 from 2014?
Same game mechanics, different implementation. The original by Gabriele Cirulli is at play2048.co. There are dozens of clones with different visual styles or extra features (undo, larger boards, time-attack mode). This implementation is a faithful version of the classic 4×4.
Why did 2048 become so popular?
Three reasons: dead-simple rules (you understand it in 10 seconds); deep strategic emergence (every move matters, the corner-snake strategy isn't obvious); and immediate accessibility (it's a web page, no install). It hit at the right moment in 2014 when mobile-friendly puzzle games were exploding.
Is there a way to undo a move?
Not in this version. The original 2048 also doesn't have undo, on principle — every move is committed. Some clones add undo (one-step or unlimited); we kept the original constraint to preserve the strategic weight of every move.