I\'m reading the Google Maps API and it states that the:
\"callback: The function to call once the script has loaded. If using the Auto-loading feature, this
The name of a function is a string such as 'foo' in this case:
function foo() {}
A reference to a function is any variable that is set to the value of the function itself (not the result of calling it).
Functions in Javascript can be anonymous - you can have a reference to a function that has no name.
var bar = function() {}