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