js
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
let month = 1;
|
||||
let fibonacciSequence = [1, 1]; // Fibonacci-Star
|
||||
const monthSpan = document.getElementById("month");
|
||||
const rabbitsContainer = document.getElementById("rabbitsContainer");
|
||||
const nextMonthBtn = document.getElementById("nextMonthBtn");
|
||||
const monthSpan = document.getElementById("monat");
|
||||
const rabbitsContainer = document.getElementById("container");
|
||||
const nextMonthBtn = document.getElementById("nextBtn");
|
||||
|
||||
function nextFibonacci(n) {
|
||||
if (n < 2) return 1;
|
||||
|
||||
Reference in New Issue
Block a user