console.log = function (...stuff){
    throw stuff.join()
}
console.log("Hello, world!")
Hello, world!
View all comments