My first ReactJS app from scratch


ReactJS is a JavaScript library for developing user interfaces (UIs) which efficiently update when your data changes ReactJS apps are very performant since ReactJS uses a virtual DOM which is a JavaScript object representing the regular DOM. The virtual DOM is much faster than the regular DOM To install ReactJS on your computer open a […]

What is ECMAScript 6 or ES6?


ECMAScript 6 (ES6) is the specification or standard followed by many programming languages like JavaScript, JScript, ActionScript, etc. The most popular programmimg language following this specification is JavaScript, That is why many people call ECMAScript 6 JavaScript 6 New features introduced in ECMAScript 6: The let statement allows you to declare a variable with block […]