Map和Record有什么区别

时间:2019-06-04 13:25:50

标签: typescript typescript-typings

我不太了解Map和Typescript中的Record之间的区别。

我发现的唯一比较是

  

Typescript 2.1引入的一个非常有用的内置类型是Record:它允许您创建类型化映射,非常适合创建复合接口。

https://levelup.gitconnected.com/advanced-typescript-types-with-examples-1d144e4eda9e

但是输入这样的Maps:

const testMap = new Map<number, string>();

也可以,所以我不太了解其中的区别。

0 个答案:

没有答案