window.onload = function(){
var obj = '{
"name" : "Raj",
"age" : 32,
"married" : false
}';
var val = eval('(' + obj + ')');
alert( "name : " + val.name + "\n" +
"age : " + val.age + "\n" +
"married : " + val.married );
}
In a code something like this, I am trying to create JSON string just to play around. It’s throwing error, but if I put all the name, age, married in one single line (line 2) it doesn’t. Whats the problem?
Disclaimer: This is not an answer to follow for the best way how to create JSON in JavaScript itself. This answer mostly tackles the question of "what is the problem?" or WHY the code above does not work – which is a wrong string concatenation attempt in JavaScript and does not tackle why String concatenation is a very bad way of creating a JSON String in the first place.
See here for best way to create JSON: https://stackoverflow.com/a/13488998/1127761
Read this answer to understand why the code sample above does not work.
Javascript doesn’t handle Strings over multiple lines.
You will need to concatenate those:
You can also use template literals in ES6 and above: (See here for the documentation)