18-10-2023 - Andrés Cruz
JavaScript Let's talk a little about what programming languages are and what we can use them for.
18-10-2023 - Andrés Cruz
JavaScript An algorithm is a sequence of operations to be performed that we define to solve a problem and that we then take to a program like the function that I showed you previously.
18-10-2023 - Andrés Cruz
JavaScript We are going to know the use and scope of functions as a central element in any programming language.
18-10-2023 - Andrés Cruz
JavaScript The structure of while is similar to that of for, but a little cleaner.
17-10-2023 - Andrés Cruz
JavaScript We are going to learn about the use of variables and comparators as a fundamental element in any programming language.
17-10-2023 - Andrés Cruz
JavaScript We are going to explain how the do while loop works and its similarity to the while loop that we saw previously.
17-10-2023 - Andrés Cruz
JavaScript We are going to learn about the for loop, a control structure that allows us to repeat the same instruction or instructions that define a finite set of times.
16-10-2023 - Andrés Cruz
JavaScript Data types are simply a mechanism with which we can represent to save values through the variables that we will later see what they are.
16-10-2023 - Andrés Cruz
JavaScript Control structures are the mechanism we have in programming languages to break the basic or sequential flow of the instructions that we define in our program.
16-10-2023 - Andrés Cruz
JavaScript The if is the control structure par excellence that allows us to make decisions according to a condition to be evaluated.