JavaScript arrow functions

const func = () => expression;

//this is equal to

function name () {
    return expression;
}