1597-Game is inspired by 2048 game.
~ Coded in HTML, CSS and JavaScript!
In 2048 --- we uses multiples of 2 .... but in
1597 --- I used Fibonacci numbers {Ex; 1,1,2,3,5,.....}
~ The Fibonacci series is a sequence of numbers where each number is the sum of the two numbers before it.
The sequence starts with 0 and 1
The second number is 1
The third number is 1 + 0 = 1
The fourth number is 1 + 1 = 2
The fifth number is 2 + 1 = 3
The sixth number is 3 + 2 = 5
And so on..........