Arrow functions use a concise syntax (=>) and do not bind this context, making them suitable for callbacks without the need to manually bind this.
=>
this
const greet = () => "Hello";