Compare commits
1 Commits
76c2fdc9c1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| b3e430ebd3 |
@@ -1,8 +1,8 @@
|
|||||||
let month = 1;
|
let month = 1;
|
||||||
let fibonacciSequence = [1, 1]; // Fibonacci-Star
|
let fibonacciSequence = [1, 1]; // Fibonacci-Star
|
||||||
const monthSpan = document.getElementById("month");
|
const monthSpan = document.getElementById("monat");
|
||||||
const rabbitsContainer = document.getElementById("rabbitsContainer");
|
const rabbitsContainer = document.getElementById("container");
|
||||||
const nextMonthBtn = document.getElementById("nextMonthBtn");
|
const nextMonthBtn = document.getElementById("nextBtn");
|
||||||
|
|
||||||
function nextFibonacci(n) {
|
function nextFibonacci(n) {
|
||||||
if (n < 2) return 1;
|
if (n < 2) return 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user