Angular – Typescript Log

Table of Contents

Source

console.log

				
					console.log(
      'test',
      'number: ' + this.num,
      `bool: ${this.bool}`
    );
// if you like colors
console.log('%c ' + message, 'color: green; font-weight:bold');