I don't understand why people prefer arrow-functions in Javascript in the following context:
const name = () => stuff();
vs
function name() {
stuff();
}
... they are ideal for callbacks and map-operations, but when I want to declare a function, I want to see that keyword.