Resultados para:
Tutoriales
-3. Intermediate Fundamentals-
PROMISES. These have three states: pending, requesting information to the API; fulfilled, we got a resolved answer; and rejected, the answer was denied due...
-2. How JavaScript works-
PARSERS AND THE ABSTRACT SYNTAX TREE. JavaScript is not read by the browser directly, this has to be compile and optimize into bytecode before by an Engine....
Fundamental Concepts in JavaScript
HOW A SCRIPT REACH THE BROWSER. Firstly, when the engine of the Browser detects the indes.html, this organize the code by blocks and nodes in a structure like...
-.2 Executed Code-
MEMORY HEAP.! It’s that space in memory where the engine saves values under the variable names so when they are called from the call-stack this will have a...
-1. JavaScript Engine Introduction-
<h3>HOW DOES JS ENGINE WORK?</h3> To communicate with the computer there is a language these only understand and are binary language. Coders write...
Entiende cómo funciona el motor de JavaScript
Este artículo fue originalmente publicado en Dev.to. Hoy vas a entender de una vez por todas cómo funciona el JavaScript Engine para que sepas que pasa con...
Fork de repositorios en Github
¿Qué es un fork? La palabra fork se traduce al castellano, dentro del contexto que nos ocupa, como bifurcación. Cuando hacemos un fork de un repositorio, se...
Flujo de trabajo con Git para gestionar y aprobar un Pull Request (PR) en un repositorio remoto compartido en Bitbucket
Veamos un flujo de trabajo con Git para gestionar y aprobar un Pull Request (PR) en un repositorio remoto compartido. El flujo de trabajo se ha comprobado que...
Comandos basicos en Git
Hola, les dejo un resumen de los primeros comandos que debemos manejar en Git. Si desean tener el documento, aqui les dejo el...
-EMERGENCY GIT COMMANDS-
Amend to rebuild commits. The following command: “git commit –amend” will add the changes added previously to the last commit and it will offer to change the...