scrimba
Introduction to Project Euler
Multiples of 3 and 5
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Multiples of 3 and 5
Expand for more info
index.js
run
preview
console
// If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.

// Find the sum of all the multiples of 3 or 5 below the provided parameter value number.

function multiplesOf3and5(number) {
// Good luck!
return true;
}

multiplesOf3and5(1000);
Console
index.html
-5:22