Scramble or Jumble Word Solver with Express and Node.js

Mohammad Yaser Ahmadi
6 min readSep 16, 2022

With javascript and Express and Node.js I implemented a jumble solver that uses a dictionary and create a tree and then traversal the tree after that you can get all possible words

Jumble is a word puzzle that is played by scrambling the letters to make an anagram, based on some clue. Jumble Solver helps solve such puzzles if you enter some clues (scrambled letters).

There are a lot of websites where you enter the jumbled/scrambled words and it tells you the possible words or answers.

A Jumble or Scramble Word Game is a game where a mixed-up set of letters are provided and you have to unscramble the letters to find the word.

These are popular websites that Solve jumble/anagram word puzzles:

This is an example of heloz

I had been thinking implementation like these websites is straightforward so when I tried to implement it and I found it’s not really easy but finally with EpressJS( Node.js ) I…

--

--