Uncategorized

Immutable Data Structures for Functional JavaScript

Functional programming is used when implementation of imperative and object-oriented programming starts to become a headache. In functional programming, programs are conceived as just pure functions, meaning that they compute the same output always for the same input. Side effects like changing things in the console or global state are not relatable in functional programming. In fact, they are simply used to take data in, transform the data and send the data out.


Uncategorized

Angular Form Control: Redux Edition

There are several reasons why it is required to integrate redux in to the forms. Firstly, it lowers the
maintenance costs of the form setups on large scale applications from moving form setups out of the components, which can be very helpful when dealing with a lot of forms like in enterprise projects. It centralizes the form data and makes it easier for abstractions or common operations…