Learning JavaScript Array.Reduce() Method

Note: This post is work-in-progress learning-note and still in active development and updated regularly. In the previous posts, Understanding JavaScript Arrays  and Learning JavaScript Array Methods were in detail. Because JS array.reduce() method is more complex and an important method, in this learning-post, we will discuss its basic syntax, how it works and explain with some examples. […]

Learning JavaScript Maps & Sets

Note: This post is work-in-progress learning-note and still in active development and updated regularly. The ECMASript 2015 (ES6) defines seven data types: six are primitives (Boolean, Null, Undefined, Number, String & Symbol) and an Object. The object data type is fundamental to JavaScript (JS) language as it holds different data types: primitives, object and functions […]

Learning JavaScript Array Methods

Note: This post is work-in-progress learning-note and still in active development and updated regularly. In previous learning-note post, Understanding JavaScript Arrays some basic features of JavaScript arrays : syntax, creating an array, accessing array elements, recognizing an array, looping through an array elements and basic adding/deleting elements were discussed. From JS data type & structure perspective, […]