Skip to content

Instantly share code, notes, and snippets.

@oshanz
Created October 3, 2014 11:11
Show Gist options
  • Save oshanz/a485ec6614ec7db452ff to your computer and use it in GitHub Desktop.
Save oshanz/a485ec6614ec7db452ff to your computer and use it in GitHub Desktop.
Sort Mysql Months
'use strict';
var _ = require('underscore');
function sortMonths(months) {
return _.intersection(['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], months);
}
console.log(sortMonths(['March', 'January']));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment