Get date

Hi, i have the following code

var currDate = new Date()
var day = currDate.getDay()
var month = String(currDate.getMonth())
this.currDate_txt.text = day+"/"+month

It is upposedto display the date but it is displaying something that does not correspond with todays date. It should get ony day and month.

Help is welcome.