I want to put line breaks on a string on angular.ts side but '\n' is not working.
var msg = "hello friend!" + '\n'
msg+= "You fine there"
console.log(msg);
What must i do to achieve the string line break?