What is the equivalent of Java’s System.out.println() in Javascript?

Essentially console.log(“Put a message here.”) if the browser has a supporting console. Another typical debugging method is using alerts, alert(“Put a message here.”) RE: Update II This seems to make sense, you are trying to automate QUnit tests, from what I have read on QUnit this is an in-browser unit testing suite/library. QUnit expects to … Read more