let d: any = "some string"d = d.toUpperCase()//d is "SOME STRING"d = 3.14let s = d.toString()s = d.tostring(); //<- RunTime errorconsole.log(`s is "${s}"`)