Question: Fix the logic error so that the output is 0. var a = 0; var b = 2; var c = 23; var d
Fix the logic error so that the output is 0. var a = 0; var b = 2; var c = 23; var d = 40; alert(a* b/c + d); O alert((a * b )/ c + d); alert(a* (b / c) + d); O alert(a*b/(c + d)); alert((a*b / c) + d);
Step by Step Solution
3.40 Rating (159 Votes )
There are 3 Steps involved in it
The detailed answer for the above que... View full answer
Get step-by-step solutions from verified subject matter experts
