Делаем подстановку нуля перед месяцем
var date = new Date(); var dt = date.getFullYear() + '/' + ('0'+(date.getMonth()+1)).slice(-2); alert (dt);