J
John Zoldiark
I have an array like this:
array = [ "manyThings.mp3", "myLike.gif", "moreCoco.bmp",
"theFormat.bmp"]
and I want to make some comparison to eliminate all the words in the
array that are NOT of the bmp format. So at the end the array will look
like this:
array = ["moreCoco.bmp", "theFormat.bmp"]
is there a way to do this???
Many thanks for the help
array = [ "manyThings.mp3", "myLike.gif", "moreCoco.bmp",
"theFormat.bmp"]
and I want to make some comparison to eliminate all the words in the
array that are NOT of the bmp format. So at the end the array will look
like this:
array = ["moreCoco.bmp", "theFormat.bmp"]
is there a way to do this???
Many thanks for the help