If you want the simplest way just concat all of the separate parts
var output = dt.getMonth( ) + 1 +'/'+ dt.getDate( ) + '/' +dt.getFullYear( );
There are a few libraries that will handle more advanced stuff if you need it, but that is the lightest way I can think of doing what you are asking.