What will be the Output of the following JavaScript Statements? x=5+5; document.write(x); y="5"+"5"; document.write(y);
x=10, y=10
x=55,y=55
x=10,y=55
None of the above.