I’ve been having trouble solving this exercise for 2 days now, i went back and watched java script for beginners by the channel the academy recommended, from reeducating myself in parts i didnt fully understand and going over through parts of the eloquent book that i felt were important to solving this, oh and also Google i arrived to what i feel like 80% completion with 20% still missing, i am slightly frustrated so im asking for help on the 20% i dont need the answer just a clue or recommendation that will lead me to it.
this is my code:
for (let i = 1; i <=100; i++){console.log(i);
if (i%3) {
console.log (“fizz”)
}
while (i%5) {console.log(“buzz”);
if (“i%3”+“i%5”) { console.log(“fizzbuzz”)
}
break}
}