Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yutakatsuchida/4a915aef363f08d3d4edc8d6481243ad to your computer and use it in GitHub Desktop.
Save yutakatsuchida/4a915aef363f08d3d4edc8d6481243ad to your computer and use it in GitHub Desktop.
// Define array
var products = ['apple', 'orange', 'banana'];
// Delete the product, but empty value remains in array
delete products[1];
// Remove the empty value from the array
products = products.filter(function (el) {
return el != null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment