You are viewing a single comment's thread. Return to all comments →
Totally forgot about .filter(), neat!!
function birthdayCakeCandles(candles) { let candle = Math.max(...candles); let count = 0; for (let i = 0; i < candles.length; i++) { if (candles[i] === candle) { count++; } } return count; }
Seems like cookies are disabled on this browser, please enable them to open this website
Birthday Cake Candles
You are viewing a single comment's thread. Return to all comments →
Totally forgot about .filter(), neat!!