Skip to content

Instantly share code, notes, and snippets.

@vadimstasiev
Created September 13, 2020 18:48
Show Gist options
  • Save vadimstasiev/f9ed8c05718e80ad7b25f126ed800455 to your computer and use it in GitHub Desktop.
Save vadimstasiev/f9ed8c05718e80ad7b25f126ed800455 to your computer and use it in GitHub Desktop.
Useful JSON example
function constructJson(jsonKey, jsonValue){
var jsonObj = {"key1": jsonValue};
jsonObj[jsonKey] = "2";
return jsonObj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment