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, […]

Understanding JavaScript Arrays

Note: This post is work-in-progress learning-note and still in active development and updated regularly. The MDN Docs defines arrays as “an ordered set of values that you refer to with a name and an index“. JavaScript (JS) objects hold one or more data types including numbers, strings and objects as key:value pairs. One of the […]

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 […]

Learning JavaScript Prototypes & Inheritance

Note: This post is work-in-progress learning-note and still in active development and updated regularly. In previous learning-note post, JavaScripts Objects – The Basic some basic features of objects: syntax, creating objects with literals, properties & methods, assessing object properties & methods were discussed.In this learning-note post, more advanced features of creating new objects with constructor […]

Thoughts #3: Static Site with Jekyll

I have been using WordPress for my content management for several years. I am impress with its friendly developer community and find myself at ease using for all my content management. I am passionate WordPress learner and learning to develop better WordPress powered-site every single day. Despite some issues like security, little heavy for a […]