by treewalkerlabs | Aug 6, 2018 | Electron, ES6, Javascript
What is Electron ? Electron is framework to develop the native desktop application for all major platforms (windows, Mac and Linux) using HTML , CSS and Javascript. How to Install Electron? To install Electron , we need to install nodejs and npm . To check if NodeJs...by treewalkerlabs | Jul 31, 2018 | Angular, Angular2, ES6, Javascript
In a angular2 project we were supposed to integrate the bootstrap modal pop up. This will open the pop up on button click. To integrate the pop up , we have installed the ngx-bootstrap.ngx-bootstrap contains all core (and not only) Bootstrap components powered by...by treewalkerlabs | Feb 10, 2018 | ECMAScript, ES6, Javascript
In ECMAScript 2015 , also known as ES6 , many new features were introduced. One of the feature which get introduced was “Arrow Functions”. /********* Traditional way *************/ var func1 = function old(x,y) { return x+y; } /************* New way...by treewalkerlabs | Apr 19, 2017 | Javascript
Closures is concept functions have access to variables that were available in the scope where the function was created. To understand it fully below are the set of examples which will help you to understand: var Car = function(model){ this.model = model; // member...by treewalkerlabs | Apr 19, 2017 | Javascript
Objects in JavaScript, just as in many other programming languages, can be compared to objects in real life.In JavaScript, an object is a standalone entity, with properties and type. A JavaScript object has properties associated with it. A property of an object can be...