typescript-tutorial
typescript-tutorial copied to clipboard
Any类型章节有误
trafficstars
let anyThing: any = "any"; console.log(anyThing.myName); // console.log(anyThing.myName.firstName); // anyThing.setName("Jerry"); // anyThing.setName("Jerry").sayHello(); // anyThing.myName.setFirshName("Cat");
后四句都会报错