I am trying to display a string on multilines with \n
in the Postman Console. How can I do this?
Example:
var mystr='line\n another line\n another line';
console.log(mystr);
Expecting:
line
another line
another line
Getting:
lineanother lineanother line
Note: it is working as expected in Firefox scratchpad.