1const numberInString = "20";
2console.log(typeof(numberInString)) // typeof is string this is string in double quote " "
3const numInNum = parseInt(numberInString) // now numberInStrings variable converted in an Integer due to parseInt
4console.log(typeof(numInNum)) // this tell us the type of numInNum which is now a number