- 2
Can anyone help me to explain about this problem var c = 3,d = 4; a = d; b = c; ++d; alert(a*d+c);
1 Answer
+ 2
var c = 3,d = 4;
var a = d; // a = 4 now
var b = c;
++d; // d = 5 now
console.log(a*d+c); // 4*5+3 = 23
Hot today
I have made a calculator in which my % (Percentage) not work correctly for 100%50 or 100%20.
2 Votes
Python palindrome challenge.
1 Votes
Java
0 Votes
Number of Ones ( C++ ) question!
1 Votes