2022-08-07 14:14:04 -07:00

6 lines
132 B
Plaintext

function with_array(objects, function_) {
var j;
for (j=0; j<array_length(objects); j++) {
method(objects[j], function_)();
}
}