Hi I am trying to get current indian date and time. when I use function new Date() function
I get local system time is there any way to get real indian standard time not local time here is my code
var currentDa = new Date();
var nowTime = new Date(currentDa.getTime());
var Chour = nowTime.getHours();
var Cminute = nowTime.getMinutes();
var currentTime = (+Chour + "." + Cminute);