Conversaciones » Desarrolladores
Setting function to variable
log = console.log.bind(console);
log("TEST");
This works if it's what you want to do.
Thank you. Works well.
Conversaciones » Desarrolladores
log = console.log.bind(console);
log("TEST");
This works if it's what you want to do.
Thank you. Works well.
Setting function to variable
The script below use to work but now it doesn't. Can someone tell me why it fails and how I can get it working. Thanks