Jak przypisać SET Funkcję jako zmienną

let a = 5
let b = 10
let sum = function(){
return a+b
}
console.log(sum())
Ill Ibis