-
-
Save Shivabeach/3966545 to your computer and use it in GitHub Desktop.
$months = [ | |
'January', | |
'February', | |
'March', | |
'April', | |
'May', | |
'June', | |
'July', | |
'August', | |
'September', | |
'October', | |
'November', | |
'December' | |
]; |
Thank you !
Saved my 2 minutes and ugly work.
Thanks from every copy/pasting addicted programmer :)
thanks man
thanks, way too lazy to write them myself
ILU
Hahaha thanks
me lazy af ty brother
thanks
Legend!
thank you lol
For Java:
{
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
}
Thanks
I wasted more time searching for this then actually write it manually
thanks, saved me the time it'd have taken to write this myself
can't believe there's everything on the internet
inline:
const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ];
XD
let monthFull = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
let month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
let dayFull = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ];
let day = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ];
thanks
kotlin:
Full name:
val convertMonth = when(month) {
1 -> "January"
2 ->"February"
3 ->"March"
4 ->"April"
5 ->"May"
6 ->"June"
7 ->"July"
8 ->"August"
9 ->"September"
10 ->"October"
11 ->"November"
12 ->"December"
else -> ""
}
Short name:
val convertMonth = when(month) {
1 -> "Jan"
2 ->"Feb"
3 ->"Mar"
4 ->"Apr"
5 ->"May"
6 ->"Jun"
7 ->"Jul"
8 ->"Aug"
9 ->"Sep"
10 ->"Oct"
11 ->"Nov"
12 ->"Dec"
else -> ""
}
$months = [
'1' => 'January',
'2' => 'February',
'3' => 'March',
'4' => 'April',
'5' => 'May',
'6' => 'June',
'7' => 'July',
'8' => 'August',
'9' => 'September',
'10' => 'October',
'11' => 'November',
'12' => 'December'
];
superb
thanks
Thank you sir!
In javascript for fast access
const months = {
"01": "Jan",
"02": "Feb",
"03": "Mar",
"04": "Apr",
"05": "May",
"06": "Jun",
"07": "Jul",
"08": "Aug",
"09": "Sep",
// eslint-disable-next-line prettier/prettier
"10": "Oct",
// eslint-disable-next-line prettier/prettier
"11": "Nov",
// eslint-disable-next-line prettier/prettier
"12": "Dec",
};
this man must be protected
saved my time, that i spend on writing this comment :)
Thanks!