But first, What are props? Is a pattern to share information between a parent component and a child component, where the parent component…
What is an array? It’s a JavaScript object that allows you to store multiple values in a single variable with a specific order. Properties…
What is an object? A literal object in JavaScript is a type of data that is declared with a variable that is used to store the collection of…
Colaboration by Gerardo Leal Classes in JavaScript In ES2015, the keyword was introduced to provide a cleaner syntax to create objects in…
What is this? A function’s this references the execution context for that call, determined entirely by how the function was called. In other…
What’s scope? Scope defines the lifetime and visibility of a variable. Variables are not visible outside the scope in which they are…
Defining functions Functions are values that can be called or declared, they are one of the fundamental building blocks in JavaScript, that…
String The string is used to represent and manipulate a sequence of characters, they are useful for holding data that can be represented in…
What are control flow statements? Is the order that the instructions, statements or functions are executed. Expression Any unit of code that…
Number in Javascript Number is a primitive object used to represent and manipulate numbers like or . The number constructor contains…
What are variables? Variables are containers with reusable data on it, basically a unit of storage in JavaScript. Declare variables in…
Controlled components In HTML the elements , and maintain the update’s state based on their input. In react, states which are mutable must…
What is JSX? It is a syntax used as a JavaScript extension in react components to described how it is going to look like the UI. Is…
What is the lifecycle in React? They can be defined as a series of methods that are invoked in different states of the component's existence…
What are Hooks? are functions that allow you to maintain a state and react to components' lifecycles. The hook's syntax is a react API…
What is state? Is an object that determines how that component renders and behavior, in other words is whats allows you to create…
React components Components are like JavaScript functions, they accept inputs (called props) and return elements that described what should…