Category: Angular2

  • How to use paytm in your website to add money to your wallet using javascript.

    Paytm wallets are used in almost all the websites we encounter these days. Also it is one of the best wallet used for handling digital transactions. Although Paytm has provided us with the direct API for checking balance and making payments if we have sufficient balance in our wallet. But what if we do not […]

  • Learn how to create forms with validations in angular 2

    Angular has provided us with modules with which we can not only write forms but also make them reactive. Let see how Angular 2/ Angular 4 helps us create forms. Modules to be imported Firstly we need two modules import {FormsModule, ReactiveFormsModule} from ‘@angular/forms’; and add them to the @NgModule’s import section. Adding FormBuilder and […]