Consider this below string in JavaScript:
"TEST NAME\TEST ADDRESS"
(it contains only one "\" which cannot be changed).
Now, this above string needs to be split into two string by "\" char.
Resulting strings:
"TEST NAME"
"TEST ADDRESS"
How, can this be done in JavaScript?