From 946d00297ce24ad934bb5eb242540c207869d4d5 Mon Sep 17 00:00:00 2001 From: DSanatGarg <72913925+DSanatGarg@users.noreply.github.com> Date: Thu, 15 Oct 2020 14:54:36 +0530 Subject: [PATCH] Update index.html --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 17cc259..47f53d4 100644 --- a/index.html +++ b/index.html @@ -15,13 +15,13 @@ for(let i = 0; i < 1000; i++) { const node = document.createElement('div'); - if (i % 3 === 0 && i % 2 === 0) { + if (i % 3 == 0 && i % 2 == 0) { node.innerText = 'fizzbuzz'; } - else if(i % 3 === 0) { + else if(i % 3 == 0) { node.innerText = 'buzz'; } - else if (i % 2 === 0) { + else if (i % 2 == 0) { node.innerText = 'fizz'; } else {