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