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 = \'
The worst thing of using just
console.log({'some stuff': 2} + '\n' + 'something')
is that all stuff are converted to the string and if you need object to show you may see next:
[object Object]
Thus my variant is the next code:
console.log({'some stuff': 2},'\n' + 'something');