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