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 be 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 […]
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 […]
Understanding JavaScript Conditional Statements
Note: This post is work-in-progress learning-note and still in active development and updated regularly. In a programming language, conditional statements are used to perform certain task repeatedly based on different conditions. For example, when writing codes, we would like to do different action for different situations. Following conditional statements are commonly used in JavaScript: If […]
