Skip to content

Instantly share code, notes, and snippets.

@telingadigital
Created February 6, 2018 17:01
Show Gist options
  • Save telingadigital/bc22e4605be6594b89421c026ca69ad6 to your computer and use it in GitHub Desktop.
Save telingadigital/bc22e4605be6594b89421c026ca69ad6 to your computer and use it in GitHub Desktop.
Remove String Only in array Javascript
function removeString(arr){
for(var i = arr.length-1; i--;){
if (typeof arr[i] === 'string')
arr.splice(i, 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment