From 9cd36deffadc4f5ab83f08c2999407b31354027e Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Fri, 20 Feb 2026 17:04:46 +0530 Subject: some moves dynamic array setup & starting position --- bitboards.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitboards.html') diff --git a/bitboards.html b/bitboards.html index 94006a7..b9db958 100644 --- a/bitboards.html +++ b/bitboards.html @@ -100,7 +100,7 @@ const label = document.createElement("div"); label.classList.add("horizontal_label"); board.appendChild(label); - for (let i = 0; i < 8; i++) { + for (let i = 1; i < 9; i++) { const label = document.createElement("div"); label.classList.add("horizontal_label"); label.textContent = i; -- cgit v1.2.3