Cara menetapkan atur fungsi sebagai variabel

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