Consider the following example:
var mystring = `{
name: "hello",
value: 1234
}`
var jsonobj = JSON.parse(mystring)
The code above will not output anything because the "name" and "value" keys are missing quotes. How can I parse this string to a JSON object without adding quotes manually?