These days AngularJS is highly recommended framework for front-end developer. Angular is really awesome framework to work with. Below are few techniques those I feel really cool features and may be these are simple and easy for you but as a fresher in angular I think these features are really good.
1. How to add multiple classes in ng-class?
Everyone knows how to add class using ng-class, its very easy. We can use ng-class to have more than one class as well
1 2 3 4 5 6 7 8 | // single class <div ng-class= "{'myclass' : condition}" > </div> // multiple class <div ng-class= "{'myclass1': condition1, 'myclass2': condition2}" > some content </div> |
Similarly we can add many classes separated by comma (,)
2. Can we have multiple conditions in ng-hide and ng-show?
Yes, we can have multiple conditions in ng-hide and ng-show.
1 2 3 4 | // ng-show with multiple conditions <div ng-show= "condition1 || condition2" > Some content </div> |
3. How to share methods or data between controllers?
Yes we can share data and methods between controllers using Factory or Service. Angular has service as constructor method which instantiate once on startup and we can use this service/factory in any controller within the module by injecting on controller method.
You also like to know about:
- Do you know what happens when you hit url www.goolge.com?
- Know about Debouncing & Throttling
- AngularJS advanced trick and techniques
- Restrict input to allow only required value (jQuery plugin for input type validation)
- Spread operator or Rest parameter or Ellipsis in JavaScript
- Why call and apply two methods available in JavaScript
- Automatic Form Input Validation for complete site
- Number of ways you can create function in JavaScript +what are they called
- JavaScript Native objects
- How to Create private function in JavaScript
- functions as first class object in JavaScript
- Object Oriented concept in JavaScript
- Advanced JavaScript questions
- One good way to declare Global Variables in JavaScript
- how to align elements in a row with equal space around
- Closures in JavaScript
- AJAX call in AngularJS for cross domain service using JSONP
- Cross Site Scripting in WCF Web Service. How to use AJAX in JavaScript to Get/Consume JSON from WCF in C#
- How to add AngularJS in rails application
- Git configuration all about
- Pass XML file in stored procedure as a input parameter from C#
- XML Parser in SQL Server (T-SQL), How to parse XML in SQL
- Wish your friend with your own words and love
- Create Message in Hindi by typing in Hinglish
- Convert Multiline Text Into Single Line for HTML page