There is a easy script uses bind to shorten the console log to speed up the development process.This can be done with every function
const log = console.log.bind(document)
log("Hello")
log("world")
There is a easy script uses bind to shorten the console log to speed up the development process.This can be done with every function
const log = console.log.bind(document)
log("Hello")
log("world")