// Numeros
	40
// String
	"Aaron Vegu"
// Booleanos| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.6.12; | |
| import 'https://raw.githubusercontent.com/provable-things/ethereum-api/master/provableAPI_0.6.sol'; | |
| contract ETHUSD is usingProvable { | |
| // Variable que guardara nuestra relacion entre las divisas | |
| uint256 public etherUSD; | |
| // Constructor | 
Is a state management tool build on js that help us to manage global states that works and interacts with diferents components in our app. The first thing to remember - or know- is that Redux is not exclusively for React, it can be used for Angular or any other technology, is just that is used commonly with React.
If we are writing a full stack app we might want go to our frontend folder before we install the following dependencies (with NPM):
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.6.2; | |
| // IMPORTS | |
| // Importamos solo la interfaz del ERC721 | |
| import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; | |
| // El Receiver nos ayuda a ser compatibles con el ERC165 y tambien poder recibirlo | |
| import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; | |
| // Importamos el contrato ERC165, ya que lo requiere el ERC721 | 
In computer science, a process is the instance of a computer program that is being executed. You can open Task Manager if you’re on a Windows machine or Activity Monitor from a Mac to see information about the various processes running on your computer right now. Node has a global process object with useful methods and information about the current process.
The process.env property is an object which stores and controls information about the environment in which the process is currently running. For example, the process.env object contains a PWD property which holds a string with the directory in which the current process is located. It can be useful to have some if/else logic in a program depending on the current environment— a web application in a development phase might perform different tasks than when it’s live to users. We could store this information on the process.env. One convention is to add a property to process.env with the key NODE_ENV and a value of either produ
| let target; | |
| const humanGuessInput = document.getElementById('human-guess'); | |
| const roundNumberDisplay = document.getElementById('round-number'); | |
| const computerGuessDisplay = document.getElementById('computer-guess'); | |
| const humanScoreDisplay = document.getElementById('human-score'); | |
| const computerScoreDisplay = document.getElementById('computer-score'); | |
| const targetNumberDisplay = document.getElementById('target-number'); | 
| let input = 'I like turtles!' | |
| const vowels = ['a', 'e', 'i', 'o', 'u'] | |
| let resultArray = [] | |
| let word = '' | |
| for (let i = 0; i < input.length; i++) { | |
| for (let j = 0; j < vowels.length; j++) { | 
| // Exercise taken from Codecademy Pro to understand Object Sintax. | |
| /** | |
| * As a frequent diner, you love trying out new restaurants and experimenting with different foods. | |
| * However, having to figure out what you want to order can be a time-consuming ordeal if the menu is big, | |
| * and you want an easier way to be able to figure out what you are going to eat. | |
| * In this project, you’ll use JavaScript to randomly create a three-course meal based on what is available on a menu. | |
| * We’ll keep running it until we’re satisfied with the generated meal! | |
| */ | |
| const menu = { |