const invalidJson = '{"name": "John", "age": 30'; try { const data = JSON.parse(invalidJson); } catch (error) { console.error("Invalid JSON:", error.message); } // خروجی: Invalid JSON: Unexpected end of JSON input