How to stringify with JSON

PHOTO EMBED

Mon Jun 13 2022 19:10:01 GMT+0000 (Coordinated Universal Time)

Saved by @Tari40

let profile = {
  name: 'John',
  age: 25,
  isAdmin: false,
  courses: ['html', 'css', 'js']
};
 
const person = JSON.stringify(profile);
content_copyCOPY