Skip to main content

Posts

Showing posts with the label JavaScript mathematical operations

"1"+2+3 = ? And 1+2+"3" = ? OutPut Will Be?

What will be the output of the above line of code? Answers:- As you know in JavaScript, when the “first character” is a “string” the remaining characters will be converted into a “single string” that means the output of “1”+2+3 will be 123. If the “string” is at the end the initial characters will perform normal mathematical functions before converting into a “string”, that means the output of 1+2+“3” will be 33. Stayed Informed – Best JavaScript Interview Questions & Answers I hope you are enjoying with this post! Please share with you friends. Thank you!!