Skip to content

Instantly share code, notes, and snippets.

@is8r
Created August 12, 2014 03:35
Show Gist options
  • Save is8r/cd91196684a3d622fa85 to your computer and use it in GitHub Desktop.
Save is8r/cd91196684a3d622fa85 to your computer and use it in GitHub Desktop.
配列から特定の文字列を含む要素を削除
ar = ar.filter(
function (x, i, self) {
return x.indexOf('hoge') !== -1;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment