Hey there! I could really use some assistance with the issue I'm having. Here's the scenario:
var testarray = [AB_C_D, AC_B_D, PPLL_Y_N, PPMM_Y_N, PPDD_Y_N]
I need to eliminate any object in the array that contains "PP*" so that my final array looks like this:
var testarray = [AB_C_D, AC_B_D]
It's important to note that I can't simply remove by index number since the positions of these objects may vary. Any help is greatly appreciated!