JavaScript

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
Comment utiliser Font Awesome 5 avec React — step-by-step Javascript tutorial on Progressive Robot

Comment utiliser Font Awesome 5 avec React

Font Awesome est un kit d’outils pour les sites web proposant des icônes et des logos sociaux.  React est une bibliothèque de codage utilisant JavaScript pour la création d’interfaces utilisateur.  Bien que l’équipe de Font Awesome ait créé un volet React pour promouvoir l’intégration, il y a quelques éléments fondamentaux à comprendre au sujet de Font Awesome 5 et de sa structure. Dans ce tutoriel, vous apprendrez à utiliser le composant React Font Awesome.

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
CHAT