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

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

ubuntu - Bash Script to Check That Files Are Being Created -