Arrow function expressions An arrow function expression is a compact alternative to a traditional function expression, but is limited and can't be used in all situations. There are differences between arrow functions and traditional functions, as well as some limitations: Arrow functions don't have their own bindings to this or super, and should not be used as methods. Arrow functions don't have..