2017-10-11T04:11:46Z||2017-10-11T04:11:46Z


注意目前Typescript字典的Key只支持stringnumber。比如创建一个Key是string, value是any的字典:

var dic: { [key: string]: any } = {};

dic['a'] = 123;
dic['b'] = new Date();

for (const key in dic) {
  console.log(`${key}: ${dic[key]}`)
}

输出:

a: 123
b: Wed Oct 11 2017 12:11:31 GMT+0800 (+08)