[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-07-26。"],[[["This function calculates the bitwise AND of two numbers, `left` and `right`."],["The result is a new number where each bit is 1 only if the corresponding bits in both input numbers are 1."],["It's useful for manipulating binary representations of numbers, like extracting specific bits or applying masks."],["The example demonstrates how the function works with unsigned 8-bit numbers, calculating the bitwise AND of 25 and 21."],["You can use this function in both JavaScript and Python within the Google Earth Engine environment."]]],["The `bitwiseAnd` method computes the bitwise AND between two numbers. It takes a `right` number as input and operates on a `left` number (this). The function returns a number representing the result of the AND operation. For example, the bitwise AND of 25 and 21 yields 17, demonstrated by their binary representations: `00011001` AND `00010101` results in `00010001`. The function is available in JavaScript and Python APIs.\n"]]