Development

How To Write Conditional Statements in JavaScript — step-by-step Javascript tutorial on Progressive Robot

How To Write Conditional Statements in JavaScript

In programming, there will be many occasions in which you will want different blocks of code to run depending on user input or other factors. As an example, you might want a form to submit if each field is filled out properly, but you might want to prevent that form from…

Read more
Cómo crear elementos de React con JSX — step-by-step Javascript tutorial on Progressive Robot

Cómo crear elementos de React con JSX

El autor seleccionó Creative Commons para recibir una donación como parte del programa Write for DOnations. En este tutorial, aprenderá a describir elementos con JSX. JSX es una abstracción que le permite…

Read more
How To Code in Go eBook — step-by-step Programming tutorial on Progressive Robot

How To Code in Go eBook

This book is designed to introduce you to writing programs with the Go programming language. You’ll learn how to write useful tools and applications that can run on remote servers, or local Windows, macOS, and Linux systems for development.

Read more
Defining Methods in Go — step-by-step Programming tutorial on Progressive Robot

Defining Methods in Go

Methods are Go functions that operate on instances of a specific type. Methods allow you to communicate not only what the data is, but also how that data should be used. Methods are the core concept that makes Go interfaces possible.

Read more
Como usar o .map() para realizar iterações em itens de matrizes em JavaScript — step-by-step Javascript tutorial on Progressive Robot

Como usar o .map() para realizar iterações em itens de matrizes em JavaScript

Um dos métodos mais populares para realizar iterações em conjuntos de dados em JavaScript é o método `.map()`. O `.map()` cria uma matriz depois de chamar uma função específica em cada item na matriz mãe. O `.map()` é um método de não mutação que cria uma nova matriz ao invés de alterar a original. Neste tutorial, vamos analisar quatro usos dignos de atenção do `.map()` em JavaScript: chamar uma função de elementos de matriz, converter strings em matrizes, renderizar listas em bibliotecas e refo

Read more
How To Use the Flag Package in Go — step-by-step Programming tutorial on Progressive Robot

How To Use the Flag Package in Go

In this tutorial you’ll explore various ways to use the `flag` package to build different kinds of command-line utilities. You’ll use a flag to control program output, introduce positional arguments where you mix flags and other data, and then implement sub-commands.

Read more
CHAT