Skip to main content

Posts

Showing posts from August, 2020

How JavaScript Works ?

Any JavaScript code runs on any browser. How JavaScript code run in a browser ? Because every browser has JavaScript engine. As a google chrome has V8 engine, Mozilla Firefox has SpiderMonkey and etc . So when any JavaScript code comes to the browser then Parser will execute the code line by line and produce a data structure called Abstract Syntax Tree (AST). If Parser produce the AST then the code translate to Machine Code using of AST. Once the code converted into Machine Code then the actual code will run.       

Angular Chart Builder

This is my first angular library, named angular-chart-builder . It's a license free npm library. Anyone can install and integrate this library to there own angular project. Now the angular-chart-builder library have two types of charts that is Progress Bar and Pie Chart .   To get the library, please check the below url:    https://www.npmjs.com/package/angular-chart-builder