Skip to content

Instantly share code, notes, and snippets.

@amysimmons
Created March 6, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amysimmons/b95abc3d167aed58d1eaa7f86d0bbe48 to your computer and use it in GitHub Desktop.
Save amysimmons/b95abc3d167aed58d1eaa7f86d0bbe48 to your computer and use it in GitHub Desktop.
{"a": 42} // SyntaxError: Unexpected token ':'. Parse error.

function foo (data) { 
  console.log(data.a) 
}

foo({"a":42}) // 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment