JavaScript

Using While Loops and Do...While Loops in JavaScript — step-by-step Javascript tutorial on Progressive Robot

Using While Loops and Do…While Loops in JavaScript

Automation is the technique of making a system operate automatically; in programming, we use loops to automate repetitious tasks. Loops are one of the most useful features of programming languages, and in this this article we will learn about the while and do…while…

Read more
6 Optimization Tips for React Apps — step-by-step Javascript tutorial on Progressive Robot

6 Optimization Tips for React Apps

JavaScript frameworks, especially React, have changed the way we build apps. Optimizing page load time is important because the time a page takes to load directly correlates with bounce and conversion rates. In this tutorial we will take a look at six common mistakes most developers make when building apps with React, and how to avoid them.

Read more
An Introduction to Closures and Currying in JavaScript — step-by-step Javascript tutorial on Progressive Robot

An Introduction to Closures and Currying in JavaScript

If you write code in JavaScript it’s quite likely you have come across the term `closure`, which is a useful yet often confusing concept. But just what is a closure? And what is currying? In this tutorial we’ll explain these terms and demonstrate their use with example JavaScript code.

Read more
CHAT