How would I print something to the result screen in JsFiddle from my JavaScript. I can\'t use document.write(), it doesn\'t allow it, neither print
document.write()
print
Might not do what you do, but you can type
console.log(string)
And it will print the string into the console of your browser. In chrome push CTRL + SHIFT + J to open the console.