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

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -