In this article, we’ll be discussing Rxjs operators and how to use them in Angular. Rxjs is a library for reactive programming that allows you to work with asynchronous data streams. Operators are higher-order functions that take one or more observable sequences as input and produce an output sequence. There are many different types […]
Working with Observable in angular | Akashminds
Working with Observable in angular Observable has now become most important part of Rxjs. It provides data sharing in asynchronous programming. here are many reasons we prefer using observable instead of promise. Observable can be accessed anywhere in the application, the only way to access it by subscribing it. An Observable is like a stream […]
Angular Reactive form Validations and custom validations
Angular is smart and flexible framework to build single page applications, it provides two ways to work with forms, template drive form and Reactive form. Template driven form where we write our validations, controls and groups etc whereas Reactive form is smart and has all features in it by default. Reactive form provides uses […]
Top 11 JavaScript String functions that every developer must know
JavaScript is a programming language that is used to build server and client side applications and it has powerful functions to work with. JavaScript is a platform that is on number 1 for more than a decade in the industry. JavaScript is a text-based programming language and can build interactive web pages, As it is […]
What’s new in Angular v12 | Everything you need to know about Angular 12
Angular is Open source TypeScript Base Framework that is used to build Single Page Applications. Angular keep on adding new features day by day now it has come with some amazing feature that are added in Angular v12 or we can say in the Angular latest version. Angular released new version that is v12 […]
5 ways to reverse an array in JavaScript
JavaScript provides amazing functionalities to code with. Today we are going to go through some of best ways to reverse an array in JavaScript. Reversing an array will completely reverse all its elements from last to First or in opposite order. For example: const arrayObj = [1,2,3,4,5,6,7,8,9,10];we must get this output after reversing the […]
Angular change detection strategy simply well explained
Angular change detection strategy simply well explained Angular is an open source framework maintained by Google that is used to develop single page application using HTML and TypeScript. Angular is a component based framework where we need to have a root component, by default we have a root component that is app.component.ts that is […]
The best 11 tips to boost angular application performance
The best 11 tips to boost angular application performance I was wondering why people often says that React is faster than Angular and Angular is not much faster as compare to React but then i noticed some of most common mistakes a developer do while working with Angular framework. We can develop an Application […]
Some mind blowing CSS tips and tricks 2021
Css or Cascading Style Sheets is used to describe or present a document written in markup Language like HTML with a style sheet language. For Example: <!doctype html><html lang=”en”> <!DOCTYPE html><html><head><style>body { background-color: black;}h1 { color: red; text-align: center;}p { font-family: verdana; font-size: 20px; text-align:center; color:white;}</style></head><body><h1>CSS</h1><p>This is a centered text.</p></body></html> Output here: With the help […]
Some less known Powerful HTML features that You must use
HTML or HyperText Markup Language is markup language that is used to display documents in Web browsers. Nowadays we grow our businesses online so that the products and the services we provide spread around the world. There are millions of websites on the cloud at this time and more than 50% of websites designs are […]