
Angular Components: Pass By Reference or Pass By Value?
In Angular, you can pass data from parent component to child component using @Input() decorator, and a child component can emit an event to a parent comment using @Output() decorator.

Module Pattern in JavaScript
In this article, we will learn to create a module pattern in ES5.

Simplifying Different Types of Angular Service Providers
An Angular Service provider delivers a runtime version of a dependency value. Therefore, when you inject a service, the Angular injector looks at the providers to create the instance of the service.

Step by Step for Creating Your First Angular Element
Angular Elements allow us to create reusable Angular controls, which can be used outside of the Angular app. Learn how to create your first element.

High Performance Angular Grid with Web Sockets
You may have come across the requirement to push data in real time to an Angular Grid. To push data to the browser, you need a technology called WebSocket. You can implement that using NodeJS or ASP.NET SignalR. For the purpose of this article, we will use Web Sockets with NodeJS.

How to Count the Number of Properties of the JavaScript Object
While working with JavaScript, I come across a requirement to count a number of properties in a JavaScript object.

How To Deploy an Angular Application to GitHub
In this article, we will follow a step-by-step approach to deploy an Angular application to a GitHub. We will create a project using Angular CLI and then deploy that to GitHub. Let us get started.

Conditional Validation on valueChanges Method in Angular Reactive Forms
Do you know how to use Angular Reactive Forms value change detection? This blog post will show you the ways.

What Is ViewChild and ContentChild in Angular?
This blog shows how Angular ViewChild and ContentChild let you access and manipulate child components and DOM elements within a component's view. Read all.