jason
jason

Reputation: 21

Are there any tools to read javascript code easily?

when i visit website, sometimes i find all js code in a file written in one line.(i use chrome Devtools to read them) is there any tool to show it in multi-line way so it would be easy to read?

Upvotes: 0

Views: 127

Answers (1)

Jonathan Smith
Jonathan Smith

Reputation: 2599

At the bottom of the "Sources" window, it says:

      {}     Line 1, Column 1

Click the "{}". That will format the code into a more readable format.

Upvotes: 1

Related Questions