print asdf in javascript in javascript

To print "asdf" in JavaScript, you can use the console.log() function:

index.tsx
console.log("asdf");
21 chars
2 lines

This will output "asdf" to the console. If you are running JavaScript in a browser, you can open the console by pressing F12 and clicking on the console tab.

gistlibby LogSnag