Sys.EventArgs.Empty Object

A static object of type EventArgs that is used as a convenient way to specify an empty EventArgs instance.

var aHandler = aComponent.get_events().getHandler("anEvent");
if (aHandler){
    aHandler (aComponent, Sys.EventArgs.Empty);
}

Remarks

Used by event sources to pass event argument information.