//return something in the console
console.log(string);
//return something in the console marked as an error
console.error(string);
//return something in the console marked as a warning
console.warn(string);
//return something in the console in a table
console.table([{json strings}];
//clear the console
console.clear();