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