What’s the logic | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What’s the logic

What is the output of this code? var arr = [2, 3, 5, 8]; var str='ll. arr.forEach(x=>{ str+=x % 3; }): console.log (str); Output: 2022 What’s the logic behind it? I’m doing 2%3 3%3 5%3 8%3

15th Mar 2022, 1:23 AM
Evgeny Sergeev
Evgeny Sergeev - avatar
1 Answer
+ 3
G'day again. Have you learned the difference between division and modulo? Division gives you the quotent ignoring any remainder , eg 7/3=2 ignores the 1 remainder. Modulo gives the remainder ignoring the quotient, eg 7%3=1 remainder, ignores the 2 lots of 3. Your code seems to give you remainder of 2%3 is 2, 3%3 is 0, 5%3 is 2, 8%3 is 2. It concatenates (appends,adds,sticks on the end) each result digit to your string, which is like adding t + t + n + t gives ttnt.
15th Mar 2022, 1:59 AM
HungryTradie
HungryTradie - avatar