Development

How To Use Basic Types in TypeScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Basic Types in TypeScript

TypeScript is an extension of the JavaScript language that uses JavaScript’s runtime with a compile-time type checker. This combination allows developers to use the full JavaScript ecosystem and language features, while also adding optional static type-checking, enum data types, classes, and interfaces. This tutorial will go through type declaration and all the basic types used in TypeScript.

Read more
How To Use Destructuring Assignment In JavaScript — step-by-step Javascript tutorial on Progressive Robot

How To Use Destructuring Assignment In JavaScript

JavaScript provides you with the ability to destructure objects and assign the individual units in one take. Destructuring means to unpack the values of objects or arrays into variables. At the end of this guide, you will see how to use it and what it can replace for you.

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

How To Use Interfaces in Go

In this article, we will learn how to compose custom types that have common behaviors, which will allow us to reuse our code. You’ll also learn how to implement interfaces for your own custom types that will satisfy interfaces defined from another package.

Read more
How To Use Server-Side Rendering with Nuxt.js — step-by-step Javascript tutorial on Progressive Robot

How To Use Server-Side Rendering with Nuxt.js

Nuxt.js is a framework for Vue.js applications that can solve this problem with server-side rendering, a strategy that renders the application on the server then sends it to the client. In this tutorial, you will use Nuxt.js to generate page routes, create layout components, and set page-specific metadata for an example application.

Read more
Como usar o pacote Flag em Go — step-by-step Programming tutorial on Progressive Robot

Como usar o pacote Flag em Go

Os utilitários de linha de comando raramente são úteis, pois não vêm prontos para usar e necessitam de configuração adicional. Padrões bons são importantes, mas os utilitários úteis precisam aceitar a configuração dos usuários. Na maioria das plataformas, os utilitários de linha…

Read more
How To Use the Python Filter Function — step-by-step Python tutorial on Progressive Robot

How To Use the Python Filter Function

The Python built-in filter() function can be used to create a new iterator from an existing iterable (like a list or dictionary) that will efficiently filter out elements using a function that we provide. In this tutorial, we’ll review four different ways of using filter(): with two different iterable structures, with a lambda function, and with no defined function.

Read more
Cómo usar variables y constantes en Go — step-by-step Programming tutorial on Progressive Robot

Cómo usar variables y constantes en Go

Las variables son un concepto de programación que es importante dominar. Son símbolos que sustituyen valores que se usan en un programa. En este tutorial, se abarcarán algunos aspectos básicos de variables y las prácticas recomendadas para utilizarlos en los programas de Go que cree.

Read more
How To Use Vue.js Environment Modes with a Node.js Mock Data Layer — step-by-step Javascript tutorial on Progressive Robot

How To Use Vue.js Environment Modes with a Node.js Mock Data Layer

In web development with the JavaScript framework Vue.js, developers often create the frontend of their application before the backend is ready. For a temporary backend, you can use Node.js to create a mock data layer for your application. This tutorial shows how to use environment variables to provide data for different modes of your Vue.js project.

Read more
CHAT