const jsonString = '{"name":"John Doe","age":30,"isStudent":false}';

const user = JSON.parse(jsonString);
console.log(user);
// خروجی: { name: 'John Doe', age: 30, isStudent: false }