⬅︎ Back to Javascript tip: nifty use of the console.log function in Firebug
console.log can take multiple arguments. so it's possible to just apply all arguments of the custom log function to it:console.log.apply(console, arguments);
Comment
console.log can take multiple arguments. so it's possible to just apply all arguments of the custom log function to it:
console.log.apply(console, arguments);