Javascript Viewer, Beautifier and Formatter

HTML <style>, <script> formatting:

Javascript Beautifier & Formatter

XML Beautifier

This would beautify your non-formatted Javascript with proper formatted Javascript.

Example

function callServices(){console.log( 'services called'); callNext();}
function callNext(){
//Initiating next call
}
Before
function callServices() {
    console.log( 'services called');
    callNext();
}

function callNext() {
     //Initiating next call
}
After