// You can use => to define arrow functions. const getSum = (a, b) => { return a + b } getSum(1, 2) // 3