[[["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-10-06 UTC."],[[["This function calculates the bitwise OR of two numbers, `left` and `right`."],["The result is a new number where each bit is set to 1 if the corresponding bit in either `left` or `right` is 1, otherwise it's set to 0."],["It's demonstrated with an unsigned 8-bit example where `25` bitwise OR `21` results in `29`."],["Examples are provided for JavaScript, Python with `geemap`, and Python in Colab."]]],["The `bitwiseOr` method computes the bitwise OR of two numbers. It takes a right-hand value (`right`) as an argument and uses the calling number as the left-hand value (`left`). The method returns a new `Number` object representing the result of the OR operation. For instance, the bitwise OR of 25 (00011001) and 21 (00010101) is 29 (00011101), where each digit is 1 if either of the corresponding input digits is 1.\n"]]