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