I refer to this answer: https://stackoverflow.com/a/8934895/4275690
    Array.min = function( array ){
    return Math.min.apply( Math, array );
};
Howcome Math's min method doesn't require parenthesis before .apply() is chained onto it? My understanding of that syntax is that .min without parenthesis is a property.
My confusion arises because the majority of my experience with chaining comes from using jQuery with code similar to the following:
    jQuery("div").hide("slow", function(){
      jQuery(this)
      .addClass("done")
      .find("span")
      .addClass("done")
      .end()
      .show("slow", function(){
        jQuery(this).removeClass("done");
      });
    });
 
     
     
    