Created
May 13, 2023 16:57
-
-
Save suhailgupta03/2e752573dcea788a4bfc863d003b51af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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