JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.kendostatic.com/2012.3.1114/js/kendo.all.min.js"></script>
<!DOCTYPE html>
<body>
<div>
    Date Formating in Kendo : <div id="ByKendo"></div>
    Date with time in Kendo : <div id="ByKendoDT"></div>
    Date Formating in Javascript <div id="ByJavaScript"></div>
</div>
</body>

JavaScript

$(function(){
    // Your Input string
    var dateString = 'Thu Jun 09 2011 00:00:00 GMT+0530 (India Standard Time)';
    
    // Date Formating in Kendo
    $('#ByKendo').text(kendo.toString(new Date(dateString), 'dd/MM/yyyy'));
    
     // Date with time in Kendo
    $('#ByKendoDT').text(kendo.toString(new Date(dateString), 'dd/MM/yyyy hh:mm tt'));
        
    //  Date Formating in Javascript
    var date = new Date(dateString);
    $('#ByJavaScript').text(date.getDate() + '/' + Number(date.getMonth() + 1) + '/' + date.getFullYear());
});