I am trying to get today's date with some specific format:
var d = new Date();
var curr_year = d.getFullYear();
var curr_Month = d.getMonth();
var curr_date = d.getDate();
var todayDate = (curr_year +"/"+curr_Month +"/"+ curr_date );
This is not working. What is the proper way of changing my date's format?