for (let [key, value] of Object.entries(object)) {
console.log(`${key}: ${value}`)
}
// expected output:
// "a: somestring"
// "b: 42"
// order is not guaranteed
console.log() with css styles
console.log('%cyou are awesome :)', 'color: white; font-size: 46px')