Computer Science, asked by malaadhikari8, 1 year ago

what will the output of the following: var=a, b. a=5 b=10 b+=a a++ b-- focument.write("a="+a+"<br>") document.write("b="+b)

Attachments:

Answers

Answered by Barnali1
27
b+=a
b=b+a
b=10+5
b=15
a++=6
b--=14
Similar questions