How do you define an arrow function in JavaScript?
All of the above
const myFunction = () => {}
const myFunction = function() {}
function myFunction() {}