美文网首页
typescript中使用字典Dictionary

typescript中使用字典Dictionary

作者: 价值投机168 | 来源:发表于2020-05-21 13:40 被阅读0次

    //key为string , value为number
    var map: { [key: string]: number; } = {
    "t" : 3,
    "o" : 5,
    "g" :10
    };
    for(let k in map){
    console.log(map[k]);

    相关文章

      网友评论

          本文标题:typescript中使用字典Dictionary

          本文链接:https://www.haomeiwen.com/subject/tcpzohtx.html