Note: This post is part of creating list component series.This post is work-in-progress learning-note and still in active development and updated regularly. In JavaScript (JS), iteration of items is a very basic process. A prior knowledge of ES6 Array.map() method is essential before deep diving into Creating List React component. In a previous post, Working […]
Understanding How Props Are Passed to React Component
Note: This is part 2 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 JavaScript Classes
Note: This post is work-in-progress learning-note and still in active development and updated regularly. JavaScript is a Object Oriented language. Unlike other language (eg. C++, Java, Python etc) JS is not class-based nevertheless Objects in JavaScript are considered everything. In ES2015 (ES6), a prototype-based class keyword was introduced. In this learning note we will deep […]