Note: This post is work-in-progress learning-note and still in active development and updated regularly. JavaScript (JS) functions are the building blocks of the program, as they allow use perform an operation many times by calling name of code block without repetition. In the previous posts, we discussed Understanding JavaScript Functions – The Basics, Function Declaration […]
Deep Dive into JavaScript Property Descriptors
Note: This post is work-in-progress learning-note and still in active development and updated regularly. In a previous learning-post JavaScript Objects – The Basics, we discussed simple key:value object properties (values associated with properties). The value is one of the attribute of a property. Other attributes include enumerable, configurable and writable. These attributes further define an […]
Resources on JavaScript Learning Projects
Note: This page is still work-in-progress and still in active development and updated regularly. It was inspired by Jessica Eldredge, Elyse Holladay, Amit Ranan and many others developers that I follow. Learning any programming language involves lots of practice. Often I come across in many JS learning tutorials is “to do projects”. It is advised […]
Customizing Prism Syntax Highlighter
I have been trying to customize Prism Syntax highlighter for a while and but had somehow stocked because I could’t overwrite plugin’s CSS rules. I like Tania Radcia’s New Moon color scheme and wanted to adopt the rules in my CSS rules but I had failed in my past few attempts. To-day, while got little […]
Learning Visual Basic Code Text Editor
I have been using Notepad++ in my Windows machine for some years and it’s one of favorite code editors. In recent years, I have been slowly moving to MacOS machines from Windows and in my MacOS machine I have installed Atom as my code editor. Although I use Atom for simple code editing but return […]
Learning JavaScript While and Do..While Loops
Note: This post is work-in-progress learning-note and still in active development and updated regularly. In JS programming, like in other programming languages, there would a need to do certain task repeatedly, for example to run a block of code to perform repetitive tasks. JS loops offer easy way to perform same task repetitively. There are […]
