Note: This post is work-in-progress learning-note and still in active development and updated regularly. In the previous learning-note post Deep Dive into JavaScript Property Descriptors, we discussed briefly about property descriptor attributes – writable, enumerable, configurable and how their modification affects property enumeration with for..in loop or Object.keys() method and their use in JSON.stringify() method. […]
An Overview Of Common ECMAScript 6 (ES6) Syntax & Features
Note: This is part 1 of three-part series An Overview of ECMAScript 6 (ES6) Syntax & Features series.. This learning post is still in active development and updated regularly. ECMAScript 2015, also known as ECMAScript 6 (ES6), has significant updates in JavaScript (JS) syntax and added new features. This update is considered to be a […]
Even your favorite developers may not know many things that you know. Regardless of your knowledge level, your confidence can vary greatly. Experienced developers have valuable expertise despite knowledge gaps. Dan Abramov, Overreacted.
The above quote was taken from Dan Abramov's confessional post Things I Don’t Know as of 2018 from his personal blog site Overreacted where he lists his knowledge gaps in more than 24 areas where we assume he has knowledge.
ReactJs & JavaScript Learning Roadmap for 2019
Note: This post is part of my JavaScript (JS) and ReactJs learning roadmap series. This post is work-in-progress and will be updated regularly. In a previous post JavaScript Fundamentals Knowledge & React Learning, I reviewed my JavaScript & React learning. In the post I wrote my React Learning approach as (i) learning by doing and […]
Creating List Component in ReactJs
Note: This is part 3 of three-part prerequisite post series. A prior knowledge of these topics is essential before deep diving into Creating List React component. In the previous learning-note post Learning to Work With React Components, how to build a simple react component using run time <script>in a HTML file were discussed. Although slow, this […]
Learning to Create App Components with Create React App
Note: This Part 2 post is continuation from the previous post React App Development Setup on MacOs. This post is work-in-progress learning-note and still in active development and updated regularly. In the previous learning-note post Learning to Work With React Components, how to build a simple react component using run time <script> in a HTML file […]
