I am trying to read some angularjs code There is a point where the $timeout is been called with no delay parameter.
dataBinding: () => {
            this.$timeout(() => {
                this.selectedRow = null;
            });
        },
What is the purpose of that ?
 
     
     
    