console.log(sum(10, 20)) // 30 function sum(a, b) { return a + b } console.log(sum1(10, 20)) // Error var sum1 = function(a, b) { return a + b }