json - Jsonlint validator gives this error Parse error on line 1: varbio={ "name": ^ Expecting '{', '[' -
json - Jsonlint validator gives this error Parse error on line 1: varbio={ "name": ^ Expecting '{', '[' -
varbio={ "name": "valeriu turcanu", "role": "front end web developer", "image": "path image", "skills": [ "html", "css", "javascript", "python", "jquery" ] }
that not json.
that assignment of js object variable named varbio
the json be
{ "name": "valeriu turcanu", "role": "front end web developer", "image": "path image", "skills": [ "html", "css", "javascript", "python", "jquery" ] }
if were, instead, trying declare variable might have missed space after var
var bio={ "name": "valeriu turcanu", "role": "front end web developer", "image": "path image", "skills": [ "html", "css", "javascript", "python", "jquery" ] }
but has nil json.
json
Comments
Post a Comment