Usage | Returns |
---|---|
Array.or(right) | Array |
Argument | Type | Details |
---|---|---|
this: left | Array | The left-hand value. |
right | Array | The right-hand value. |
Examples
Code Editor (JavaScript)
var empty = ee.Array([], ee.PixelType.int8()); print(empty.or(empty)); // [] print(ee.Array([0, 0, 1, 1]).or(ee.Array([0, 1, 0, 1]))); // [0,1,1,1]