Skip to content

Instantly share code, notes, and snippets.

@ivanacostarubio
Created March 21, 2016 21:51
Show Gist options
  • Select an option

  • Save ivanacostarubio/62deac154d0bec761ef5 to your computer and use it in GitHub Desktop.

Select an option

Save ivanacostarubio/62deac154d0bec761ef5 to your computer and use it in GitHub Desktop.
getMonth(){
let months = [];
for (var i = 1; i <= 12; i++) {
i < 10 ? months.push('0' + i) : months.push(i);
}
return months;
}
vs
getMonth(){
return ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment