Created
February 11, 2020 22:49
-
-
Save yutakatsuchida/4a915aef363f08d3d4edc8d6481243ad 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
// 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