InterviewSolution
Saved Bookmarks
| 1. |
How can we assign more values through the response text? |
|
Answer» We can send multiple text values through any response text with the HELP of a concatenation operator (|). By splitting the text data into VARIOUS SEGMENTS using the pipe operator like this: responseText.split(‘|’). It RENDERS an array of text that DEVELOPERS can send through JSQN in an array format. In other words, if the response is text, we can stringified array that can be parsed in client-side. |
|