So I\'m trying to do something simple, I want to break up my traces in the console into several lines, using 1 console.log statement:
console.log(\'roleName = \'
console.log('Hello, \n' + 'Text under your Header\n' + '-------------------------\n' + 'More Text\n' + 'Moree Text\n' + 'Moooooer Text\n' );
This works great for me for text only, and easy on the eye.