@shawnjoh You are rigth that it is easier for someone used to coding, and thinking it through, I should have used the old way of function declaration to make myself clearer. Example:
function something() {
console.log("I'm a function.")
}
const samething = function() {
console.log("I'm also a function.")
}
const samethingNewer = () => {
console.log("I'm a newer function declaration with arrow functions")
}