Posts by Maykon Elias • 11 points
1 post
-
0
votes6
answers8101
viewsA: How to take the current date and add "n" minutes in this value?
var dtInicio = new Date(); var dtFinal = new Date(); dtFinal.setMinutes(dtInicio.getMinutes()+30);
1 post
0
votes6
answers8101
viewsvar dtInicio = new Date(); var dtFinal = new Date(); dtFinal.setMinutes(dtInicio.getMinutes()+30);