function sum(a, b){
return a+b;
}

const sum = (a, b) => {
return a+b;
}

どっちで書くべきだろうか?
ケースバイケースと言う場合はどういうケースで分けられるだろうか?