[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-12-06 UTC."],[[["The `or` operation compares two arrays element-wise and returns 1 if either corresponding element is non-zero, otherwise it returns 0."],["This method is useful for combining binary masks or identifying areas where either input array has a non-zero value."],["It is accessible in both JavaScript and Python environments of Google Earth Engine (GEE)."],["The result is a new array with the same dimensions as the input arrays, containing the element-wise `or` results."]]],["The `or` operation, applied element-wise between two arrays (`left` and `right`), returns a new array. Each element in the result is 1 if either the corresponding element in the `left` or `right` array is non-zero; otherwise, it's 0. `Array.or(right)` method takes a `right` array as an argument, while the `this` object refers to the `left` array. It's showed examples of usage in both Javascript and Python.\n"]]