Not sure where to start?
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
/review
Karma
scrimba
// 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);