Output-Based JavaScript Questions
Q1. What is the output of 3+2+'7' ?
Output:
57
In javascript, the addition associativity is from left to right. Due to this initially 3+2 will be evaluated and it will become 5. Now expression becomes 5+”7”
In javascript when ever we try to perfo...
output-based-javascript-interview-ques.hashnode.dev8 min read