1. JSON
์ง๋ ฌํ(JavaScript ๊ฐ์ฒด์์ JSON์ผ๋ก)
const person = {
name: 'John Doe',
age: 30,
isStudent: false,
hobbies: ['reading', 'coding'],
address: {
city: 'Example City',
zipCode: '12345',
},
};
const jsonString = JSON.stringify(person);์ญ์ง๋ ฌํ(JSON์์ JavaScript ๊ฐ์ฒด๋ก)
Last updated