C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
No operations function in AngularJS
WhatsApp
Jignesh Trivedi
Nov 25
2015
859
0
0
Angular noop function performs no operations. It is an empty function.
Example:
function TestCode(callback)
{
callback();
}
TestCode(angular.noop);
This is same as:
TestCode(function() {});
AngularJS
angular. noop
Up Next
No operations function in AngularJS