0
JS mathmatic problem [SOLVED]
Is there value of â a â 7 ? Because the output is 9. But how!! Pls explain. https://code.sololearn.com/WGWlmEbG1FXl/?ref=app
2 Answers
+ 2
a+=b is same as a = a+b(5+2), now a is 7
then, console.log(a+b),7+2 = 9
0
Lily Mea Thank you sooo much!!