Today's Little Program is an exercise that solves the following problem: Given a JavaScript array a
and an unsorted array indices
(possibly containing duplicates),
calculate the result of deleting all of the elements from the original
array as specified by the indices.
For example, suppose
a = ["alice", "bob", "charles", "david", "eve"]
...