0 votes
in JavaScript by
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

1 Answer

0 votes
by

Answer:-  D

reason:- No explanation.

Related questions

0 votes
asked Oct 9, 2022 in JavaScript by Robin
0 votes
asked Mar 20, 2021 in JavaScript by sharadyadav1986
...