LoginSignup
0
0

More than 5 years have passed since last update.

ES6 (ES2015) のMapクラスに関しての注意点

Posted at

※ はてなブログから技術ネタを移動しました
※ 初稿:2017-03-17

new Map();

てな感じでマップ使える。

new Map([
  [1, "value"],
  ["2", "valval"],
  [3, "hogehoge"]
]);

みたいな形での初期化はIE11では使えない。
Chrome, Firefox, Safariでは使えるが、互換性を考えると封じておいたほうが良い。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0