Login
Remember
Register
Ask a Question
Find output of below code var a = '20'; var b = a = 30; document.write(a+b);
0
votes
asked
Oct 9, 2022
in
JavaScript
by
Robin
Find output of below code
var a = '20';
var b = a = 30;
document.write(a+b);
a) Error in Script
b) '20'30
c) 2030
d) 50
javascript
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 9, 2022
by
Robin
Answer:- D
reason:- No explanation.
...