I'm having trouble adding a line break to a concatenated string like this:
- Item 1
- Item 2
var msg: string = '';
msg += '- Campo NOME é obrigatório';
msg += "\n- Campo EMAIL é obrigatório";
However, when I display the output, there is no line break:
- Item 1 - Item 2
I have researched extensively but have not yet found a solution. Can you please provide assistance? :)