Remove suffix of VM... in chrome console

Things like this:

20210206015028.png

It brings useless word when we copy and paste the output.
To avoid this, we can use setTimeout with a console.log.bind:

setTimeout (console.log.bind (console, "This is a sentence."));

20210206015522.png

It's clean now!