Skip to content

Instantly share code, notes, and snippets.

@rymizuki
Created June 25, 2014 12:10
Show Gist options
  • Save rymizuki/d837ef30021f97e7c180 to your computer and use it in GitHub Desktop.
Save rymizuki/d837ef30021f97e7c180 to your computer and use it in GitHub Desktop.
var data = [1, 2, 3, 4];
for (var i = 0; i < data.length(); i++) {
if (data[i] % 2) {
delete data[i];
}
}
console.log(data); // 2, 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment