I would like to perform a logical OR operation on arrays in javascript, so that performing this operation on arrays a and b
let a = [0,1,0]
let b = [0,0,5]
gives me
OR(a, b)
[0,1,5]
What would be an efficient and idiomatic way to implement OR?