Development

Como usar funções variadic em Go — step-by-step Programming tutorial on Progressive Robot

Como usar funções variadic em Go

Uma função variadic é uma função que aceita zero, um, ou mais valores como um único argumento. Embora as funções variadic não sejam o caso comum, elas podem ser usadas para tornar seu código mais limpo e mais legível. As funções variadic são mais comuns do que parecem. A…

Read more
How To Work with Arrays in Ruby — step-by-step Programming tutorial on Progressive Robot

How To Work with Arrays in Ruby

An array is a data structure that represents a list of values, called elements. Arrays let you store multiple values in a single variable. This can condense and organize your code, making it more readable and maintainable. In this tutorial, you’ll create arrays, access the values they contain, add, modify, and remove elements in an array, and iterate through the elements in an array to solve more complex problems.

Read more
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
How To Write Your First JavaScript Program — step-by-step Javascript tutorial on Progressive Robot

How To Write Your First JavaScript Program

This tutorial will walk you through creating a “Hello, World!” program in JavaScript. To make the program more interesting, we’ll modify the traditional “Hello, World!” program so that it asks the user for their name. We’ll then use the name in a greeting. When you’re done with this tutorial, you’ll have an interactive “Hello, World!” program.

Read more
JavaScript Functional Programming Explained: Partial Application and Currying — step-by-step Javascript tutorial on Progressive Robot

JavaScript Functional Programming Explained: Partial Application and Currying

Two important ideas in JavaScript with roots in functional thought are currying, which transforms a function of multiple arguments into a series of function calls, and partial application, which fixes the value of some of a function’s arguments without fully evaluating the function. In this article, you will use partial application to fix arguments to a function, curry functions to facilitate partial application, and design functions that facilitate partial application.

Read more
How To Validate Forms in Vue.js — step-by-step Javascript tutorial on Progressive Robot

How To Validate Forms in Vue.js

Form field validation requires a user to fill out all required fields in a web form. The validation is typically done where the developer can set up rules. In this tutorial, we will build a registration form which uses VeeValidate to validate its form input.

Read more
Understanding Class Inheritance in Python 3 — step-by-step Python tutorial on Progressive Robot

Understanding Class Inheritance in Python 3

This tutorial will go through some of the major aspects of inheritance in Python, including how parent classes and child classes work, how to override methods and attributes, how to use the super() function, and how to make use of multiple inheritance.

Read more
CHAT