6 lines
132 B
Plaintext
Raw Normal View History

2022-08-07 14:14:04 -07:00
function with_array(objects, function_) {
var j;
for (j=0; j<array_length(objects); j++) {
method(objects[j], function_)();
}
}