Easy
What will the following code output when executed?
1function getSum(a, b) {2 return a + b;3}45const result = getSum('5', 3);6console.log(result);
1function getSum(a, b) {2 return a + b;3}45const result = getSum('5', 3);6console.log(result);