Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // for firefox versions in 2009 that didnt have console.log
- function log(/**/) {
- var args = Array.prototype.slice.call(arguments);
- for (var i=0; i < args.length; i++) {
- document.write(args[i] + "<br>");
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment