function sumOfMultiples(number) { let sum = 0; for(let i=1; i<number; i++) { if(i % 3 === 0 || i % 5 === 0){ sum += i; } } return sum; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter