我想循环某个变量的所有public属性怎么实现?
类似于c#中的GetProperties这种typescript 中如何实现?
var test = { a:1, b:2, c:3 };
for(prop in test) alert(prop);