Skip to main content

Posts

Showing posts from 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    

An Introduction to JavaScript

Let’s see what’s so special about JavaScript, what we can achieve with it, and which other technologies play well with it. JavaScript  was initially created to  “make web pages alive” . The programs in this language are called  scripts . They can be written right in a web page’s HTML and run automatically as the page loads. Scripts are provided and executed as plain text. They don’t need special preparation or compilation to run. Today, JavaScript can execute not only in the browser, but also on the server, or actually on any device that has a special program called the JavaScript engine. The browser has an embedded JavaScript engine.