Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNayef Mandi
Courses Plus Student 2,020 PointsI Cant solve this, i need help
need help guys, i tried many times to solve this but all wrong :(
Challenge Task 1 of 2
In the editor below, you have two constants - value and divisor. Step 1: Using the remainder operator, compute the remainder given the value and a divisor. Assign this value to a constant named result.
Step 2: When value obtained using a remainder operator is 0, this means that the value is a perfect multiple of the divisor. Compare the value of result to 0 using the equality operator and assign the resulting value to a constant named isPerfectMultiple.
2 Answers
Kenneth Stamper
22,850 Points// Task 1 - Enter your code below
let result = value % divisor
// Task 2 - Enter your code below
let isPerfectMultiple = (result == 0)
First, assign the remainder to "result" using the "%" operator. Next, compare "result" to zero to find out if there is a remainder.
Nayef Mandi
Courses Plus Student 2,020 PointsOH Thanks, it took me days to find the answer lol,
mohamed hassan
2,079 Pointsmohamed hassan
2,079 Pointsthanks for the help , the video is not showing how to combine equality with comparison it took me some time searching on how to combine it , you made my day thanks again