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