1

I can't find where i can look to logs of console in jsfiddle. It possible do in this service?

console.log()

jsfiddle Thanks!

Arthur Yakovlev
  • 8,933
  • 8
  • 32
  • 48
  • 1
    Possible duplicate of [How to get console inside jsfiddle](https://stackoverflow.com/questions/39130610/how-to-get-console-inside-jsfiddle) – Evan Carroll Jul 16 '18 at 01:48
  • JSfiddle has just released his own console feature: Go into the `Settings -> Console` to activate. – Thielicious Jun 20 '20 at 15:31

1 Answers1

2

You can view the log in your normal browser console window. All console.log() output from jsfiddle is passed to the browser as a normal js script does.

You may check it here:

console.log("hello");

http://jsfiddle.net/srijithv/eXW7p/