Main difference is scoping rules. Variables declared by var keyword are scoped to the immediate function body (hence the function scope...Continue Reading→
Thursday, 5 March 2020
Tuesday, 18 February 2020
jQuery Tutorial
jQuery(selector).method() jQuery : or $ use to defined jQuery Function selecor : use to indentify the HTML element method : used to gene...Continue Reading→
Friday, 14 February 2020
React - Unit testing
Unit testing Unit testing is the practice of testing the smallest possible units of our code, functions. We run our tests and automatic...Continue Reading→
Saturday, 8 February 2020
Angular8 - Templates
Angular 7 uses the <ng-template> as the tag instead of <template>which is used in Angular2. <ng-template> has been in use...Continue Reading→