Project Euler Problems 1 to 100 - Problem 1: Multiples of 3 and 5

Tell us what’s happening:
Describe your issue in detail here. idk what to do

Your code so far

function multiplesOf3and5(number) {

  return true;
}

multiplesOf3and5(1000);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: Project Euler Problems 1 to 100 - Problem 1: Multiples of 3 and 5

Link to the challenge:

Do you know how to check if a number is a multiple of another number?

not a single bit haha

So maybe you should start with learning JavaScript? Project Euler problems are more advanced.

Have you done https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/

ohhh i just followed from bottom to top . thanks man

Bottom to top isn’t recommended. Top to bottom is the usual recommendation.

believe it or not i did it in the wrong order

idk what got into me

Sometimes we’re all a little bit of rebels without a cause :upside_down_face:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.