Copied! const map = new Map([ ['name', 'bobby hadz'], ['country', 'Chile'], ]); // ✓ Convert to JSON string const json = JSON.stringify(Object.fromEntries(map)) ...
確定! 回上一頁