Skip to content

Instantly share code, notes, and snippets.

@GZShi
Last active August 29, 2015 14:06
Show Gist options
  • Save GZShi/677300bb91cdc7841e2c to your computer and use it in GitHub Desktop.
Save GZShi/677300bb91cdc7841e2c to your computer and use it in GitHub Desktop.
snippets
// [" 1 ", "2", "", " ", "3", "4 ", "5 "] => ["1", "2", "3", "4", "5"]
function foo(arr) {
return arr.map(function (e) {
return e.trim();
}).filter(function (e) {
return e.length > 0;
});
}
// bug
function bar(arr) {
arr.join(',').replace(/(\s*,\s*)+/g, ',').trim().split(',');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment