JavaScript classes which are introduced in ES6/ES2015 are syntactic sugar over prototype-based inheritance. The following code will look familiar to you, if you know other
…Blog Posts
An arrow function is shorter than a regular function. Before ES6/ES2015 we used to define a function using the function keyword, but arrow function now
…Unless we develop our own project from scratch many things
Before ES6/ES2015 we used to declare variable using var keyword. For example:
var str = "Hello World"; console.log(str); But this var keyword has a
…Recently I finished reading a book, To-do list formula by
…Recently I noticed that one of my Python Programming course on Udemy is download by some thief, compiled and r …
Knowing a frontend JavaScript framework is now a common requirement to be a frontend web developer.
If you are interested to work on any
…Recently I am working in different JavaScript based project. Basically I am working in React Native and some Node.js related works. Before that, I used
…Web scraping is the practice of gathering data from internet automatically by computer program without using API and web browser. There are some other terms
…Being a long time native iOS and Android developer, recently I thought to checkout some cross platform library to build app based on one codebase.
…If I look few years back 🧐, I used to read books very slowly. Especially books written in English, as it is not my mother language.
…