LoginSignup
0
0

More than 1 year has passed since last update.

JavaScriptでMap -> Object

Posted at

Mapって便利ですが、JSONにするとき困りますよね?

const m = new Map();
m.set("a","1");
m.set("b","2");

console.log(JSON.stringify(m)); // {}

なんか無理やり?

const m = new Map();
m.set("a","1");
m.set("b","2");

const o = Object.assign({},...[...m.entries()].map(m=>({[m[0]]:m[1]})));

console.log(JSON.stringify(o)); // {"0":"b","1":"2"}

もっといい方法無いのでしょうか?

0
0
1

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