Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 13, 2023 16:57
Show Gist options
  • Select an option

  • Save suhailgupta03/2e752573dcea788a4bfc863d003b51af to your computer and use it in GitHub Desktop.

Select an option

Save suhailgupta03/2e752573dcea788a4bfc863d003b51af to your computer and use it in GitHub Desktop.
const response = {
mode: 'none'
}; // Objects are Javascript specific!!!!!!!
// Use strings to send data in the network!!!
console.log(response);
// WE WILL NEED TO CONVERT OBJECT INTO STRING
var myNewString = JSON.stringify(response);
console.log(myNewString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment