Angular is a web development framework that has gained much recognition because it can build sites with interactive user interfaces and excellent user experience. With the increasing demand for angular platforms, the demand for skilled Angular developers is rising. But,…
Expand +Tag: angular10
How to use cookies in angular
What is Cookies in Angular? Cookies are small packages of information that can be temporarily stored/saved by your browser and websites which are using cookies for multiple things. Cookies are used in multiple requests and browser sessions and can store…
Expand +Transpilation in Angular
Transpilation = translate + compilation The Angular compiler translates the html template to super optimized JavaScript code. The typescript compiler compiles typescript code into JavaScript. Also Read: Difference between JavaScript and TypeScript: JavaScript vs Typescript Transpiling is the one of…
Expand +Angular Online Quiz Test
Test your knowledge with this basic quiz made especially for beginners in Angular. Each test contains MCQs, and you will get 1 point for each correct answer. There is no time limit for the tests. In this online AngularJS Quiz, we will test your advanced skills to help you practice better.
Expand +How to Use ViewChild with Child Component in Angular
In Angular, the decorator @ViewChild() is used to access a child component, directive, or DOM element within the parent component. Also Read: How to Use *ngIf else, then directive in Angular In certain cases, you may need to access a…
Expand +How to Use *ngIf else, then directive in Angular
There is always a moment where you have to compare between two entities where creating your Angular application or any other application. These entities can be variables or array objects. The theory of comparison has helped to break down a…
Expand +Decorator in Angular?
Decorators are a TypeScript feature, and they are implemented as functions. The decorator name begins with @ symbol followed by bracket and arguments, whereas decorators are only functions in TypeScript. Decorators are functions simply return functions. These functions supply metadata…
Expand +