+91-6366-740-275 sales@treewalkerlabs.com

How to setup electron on windows

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...

Arrow functions in 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...