Bruno R
let myAge = '25'; typeof myAge; //el operador especial typeof retorna el tipo de dato que tiene esta variable.
let myStringNum = "22"; typeof myStringNum //output: string typeof Number(myStringNum) //output: number
let lotsOfDecimal = 1.766584958675746364; lotsOfDecimal; let twoDecimalPlaces = lotsOfDecimal.toFixed(2); //el 2 representa el numero de decimales. twoDecimalPlaces; // en este caso el output sera 1.77 porque lo redondea