November 18, 2019 4 Comments Formatting Number & Date with Intl Object The Intl object provides access to several constructors, each of them allows to do string comparison, number formatting and date and time formatting. JavaScript
November 14, 2019 0 Comment JavaScript Expression & Statement An expression is any valid set of literals, variables, operators that evaluates to a single value. JavaScript
November 11, 2019 0 Comment Difference between Undefined & Null in JavaScript In JavaScript undefined & null sound like same, but they are different. JavaScript
October 30, 2019 0 Comment JavaScript ProtoType JavaScript is a prototype based language. The term Prototype is another important topic of JavaScript. Without knowing it, we can’t understand the underlying structure of a reference typed JavaScript code. JavaScript
October 16, 2019 0 Comment Understanding AST with JavaScript In computer science there is a term I always wanted to know deep about it and it is called AST(Abstract Syntax Tree)… Compiler, Computer Science, JavaScript
October 4, 2019 0 Comment Optional Chaining & Nullish Coalescing In es2019 and TypeScript 3.7 we got two new way to check nullish value(null, undefined), these are Optional Chaining & Nullish Coalescing. JavaScript, TypeScript
September 24, 2019 0 Comment Generics in TypeScript In TypeScript Generics allows us to pass a range of types to a function or component. We can call it Abstract Type. JavaScript, TypeScript
September 24, 2019 0 Comment TypeScript Readonly Property TypeScript allows us to make an individual property readonly. When we use readonly, we can’t assign them with other variables, can’t update or delete. JavaScript, TypeScript