我在here的TypeScript手册中看到了一个示例。
我不明白为什么struct MyObj {
public int Fours { get; set; }
public int Sixes { get; set; }
public int Eights { get; set; }
public int Tens { get; set; }
public int Twelves { get; set; }
public int Twenties { get; set; }
public int Hundreds { get; set; }
}
属性无效?
length
答案 0 :(得分:3)
因为x['length']
是一个数字,但你说索引x
字符串会产生一个字符串。他们不可能都是真的。