1

In the ng-form directive there is a function named noop(). What is the use of this function? How can I guess the use of this function?

  • The SO [documentation](http://stackoverflow.com/documentation/angularjs/3032/built-in-helper-functions/12274/angular-noop#t=201705201835575849653) guide will help you – Yash Karanke May 20 '17 at 18:36
  • 2
    it could be a duplicate http://stackoverflow.com/questions/22348253/what-is-angular-noop-used-for – Beri May 20 '17 at 18:36
  • it will help you visit:https://stackoverflow.com/questions/22348253/what-is-angular-noop-used-for – Mohammad shaban May 30 '17 at 09:25

1 Answers1

0

You can find it's use in the documentation.

A function that performs no operations. This function can be useful when writing code in the functional style.

nicovank
  • 3,157
  • 1
  • 21
  • 42