Created
August 12, 2014 03:35
-
-
Save is8r/cd91196684a3d622fa85 to your computer and use it in GitHub Desktop.
配列から特定の文字列を含む要素を削除
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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