What’s new in JavaScript 2020?
JavaScript: New FeaturesThere are some new ECMAScript proposals that have landed in the “stage 4” of the TC39 proposal track. Let’s have a quick look at these features and experiment with them.(source:...
View ArticleUnderstanding new.target syntax in JavaScript functions.
JavaScript Mini SeriesIn this lesson, we are quickly going to go through the usage of new.target pseudo-property and use it to make JavaScript function non-constructible.(source: unsplash.com)You all...
View ArticleTruthy vs Falsy values in JavaScript
JavaScript Mini-SeriesIn this lesson, we are quickly going to go through truthy and falsy values that resemble true and false boolean behavior.(source: unsplash.com)When you write if/else statement in...
View ArticleHow to choose a programming language to learn
We are surrounded by hundreds of programming languages, but you can’t learn all of them. In this article, I am going to explain a few…Continue reading on ITNEXT »
View ArticleLoose vs Strict Equality in JavaScript
JAVASCRIPT MINI-SERIESIn this lesson, we are quickly going to go through strict (===) vs loose (==) equality operators in JavaScript and understand how they compare with each other.(source:...
View ArticleIntegrating TypeScript with Webpack
TypeScript: ToolingIn this lesson, we are going to learn how to compile a TypeScript project using Webpack. This setup becomes necessary if you want to bundle TypeScript containing ES6 or the CommonJS...
View Article5 simple JavaScript coding practices to consider for scalability
In this lesson, I will talk about a few coding practices I follow while writing JavaScript applications. These certainly increase…Continue reading on JsPoint »
View ArticleHow to create an executable (.exe) file from JavaScript code (using Node.js)
Node.js BundlingIn this lesson, we are going to learn how to create a .exe binary executable file from JavaScript code. This is possible with the help of Node.js runtime and some third-party...
View ArticleA basic introduction to Canvas API to draw 2D/3D graphics on Web
Graphics on Web: Canvas Web APIIn this article, we are going look at the basics of Canvas Web API provided by the browser to draw 2D/3D graphics natively on the web.(source: unsplash.com)I wanted to...
View ArticleThanks for your suggestion.
Thanks for your suggestion. Since there is no limit on the length of the JWT token, your JWT token will grow with the payload you are adding to the token. But if you are sending a JWT in cookies or in...
View ArticleA basic introduction to Fabric.js to draw 2D graphics on Web
In this article, we are going to learn about the fabric.js library which helps us draw 2D shapes on HTML5 canvas with ease.Continue reading on JsPoint »
View ArticleCreating simple HTML Canvas animations with Fabric.js
In the previous article, we took a look at the Fabric.js library and how to use it to draw basic shapes on the Canvas. In this lesson, we…Continue reading on JsPoint »
View ArticleI wouldn't personally recommend doing that because then you would need to run...
I wouldn't personally recommend doing that because then you would need to run the Webpack using `ts-node`. If you want the type IntelliSense, you can do that without converting the file to `.ts`. But I...
View ArticleAgree to everyting except `if(isValid)` is not the same as `if(isValid ===...
Agree to everyting except `if(isValid)` is not the same as `if(isValid === true)`.
View Article