/Medium

Javascript

Lesson 01: Setting Up your Javascript

JavaScript is a high-level, dynamic scripting language used to build interactive web applications....Read more

Lesson 02: Understanding Javscript syntax

Now that you’re all set up and ready, it’s time to take the next exciting step:- ✨ Understanding JavaScript’s syntax — the rules of the game!...Read more

Lesson 03: Comments in JavaScript

Comments are nothing but the code/text that gets ignored. “Oh that’s concerning right, why do we need ignored code while writing”,So it’s just for help developers make their code more readable, mainta...Read more

Lesson 04: Variables in JavaScript — var, let, and const

Variables are the heart of any program — they let you store, update, and use data as your app runs. With the arrival of ES6 (ECMAScript 2015), JavaScript gave us three ways to declare variables: var, ...Read more

Angular

Angular Component 01: Creating Components

🔹 What’s a Component? Think of a component as a self-contained module that defines a certain part of your webpage. It’s like a Lego brick — you put them together to create something bigger and functi...Read more

Angular Components 02: Input decorator databinding

In Angular🚀, components often need to communicate with each other, and one powerful way to achieve this is through the @Input decorator. 📨📦 This decorator allows you to pass data from a parent comp...Read more

Angular Components 03 : Components Output decorator

Notice inside EventEmitter the type should be in string not String. So we are emiting this value using event emitter. Taking value from html file....Read more

Angular Components 04: components @viewchild reference

Notice inside EventEmitter the type should be in string not String. So we are emiting this value using event emitter. Taking value from html file....Read more

RxJS Logo
RxJS Operators

RXJS Operator 01: Of Operator

As our definition says, “Of” operator takes the argument as it can take string, number, array, HTML document, Object as an argument. And then it converts into a stream of data....Read more

RXJS Operator 02: Ajax Operator

The ajax operator, available in the RxJS library, makes it easy to create an observable for an Ajax request by taking in a request object with the necessary URL, headers, and other options. This makes...Read more

RXJS Operator 03: From Operator

The from operator is a way to create an observable sequence from an array, an iterable, a promise, an array-like object, or an event. It can be used to convert various types of data into an observable...Read more

RXJS Operator 04: fromEvent Operator

fromEvent is one of the creation operators. fromEvent operator is used to creating an observable from an event-emitting DOM element, an event type, and a selector function to extract the arguments fro...Read more