//enter code here
let a=5;b=5;c="the addition is=",(a+b);
console.log(c);
let x=(2,3);
console.log(x);
what question I want to ask is really basic Q1 in line 1 where I gave a comma before (a+b) which is wrong actually but want to know what comma is messing around?? I expected the output 'sum is= 17' but the output came out only 'the addition='
Q2 why question 2 gives me result 3 why not 2
enter code here