Development

How To Use Array Methods in JavaScript: Iteration Methods — step-by-step Javascript tutorial on Progressive Robot

How To Use Array Methods in JavaScript: Iteration Methods

In JavaScript, the array data type consists of a list of elements. There are many useful built-in methods available for JavaScript developers to work with arrays. In this tutorial, we will use iteration methods to loop through arrays, perform functions on each item in an array, filter the desired results of an array, reduce array items down to a single value, and search through arrays to find values or indices.

Read more
Como usar interfaces em Go — step-by-step Programming tutorial on Progressive Robot

Como usar interfaces em Go

Escrever um código flexível, reutilizável e modular é vital para o desenvolvimento de programas versáteis. Trabalhar dessa maneira garante que o código seja mais fácil de manter, evitando assim a necessidade de fazer a mesma mudança em vários locais. A maneira de se conseguir…

Read more
How To Use Relationships to Select HTML Elements with CSS — step-by-step DevOps tutorial on Progressive Robot

How To Use Relationships to Select HTML Elements with CSS

In CSS, it is possible to select an element based on its relationship or proximity to another element. In this tutorial, you will use several CSS-relationship-based approaches to select and style elements on an HTML page. You will use the descendant combinator, child combinator, general sibling combinator, and adjacent sibling combinator, as well as the first-, last-, only-, and nth-child pseudo-class selectors.

Read more
How To Use the Docker Plugin for Visual Studio Code — step-by-step Docker tutorial on Progressive Robot

How To Use the Docker Plugin for Visual Studio Code

In this article we’ll use the Docker Plugin for Visual Studio Code. Docker allows us to package our applications into images and run them as containers on any platform that has Docker installed. We’ll use this plugin with two developer stacks: Node.js and Go.

Read more
CHAT