console.dirxml(...data)
At
the time of writing this post, this method calls console.log() by passing it
the arguments received.
HelloWorld.js
console.dirxml("Hello World"); const code = 5; console.dirxml('error #%d', code);
Output
Hello
World
error
#5
No comments:
Post a Comment