I am trying to understand this logic in javascript
console.log(+(4,3)); //3
console.log(+(3,4)); //4
console.log(-(4,3));//-3
I know it's stupid question, but I am just trying to understand the logic under the hood
I am trying to understand this logic in javascript
console.log(+(4,3)); //3
console.log(+(3,4)); //4
console.log(-(4,3));//-3
I know it's stupid question, but I am just trying to understand the logic under the hood