[[["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."],[[["`Number.divide()` divides the first number (`left`) by a second number (`right`), resulting in a new number."],["If the divisor (`right`) is 0, the function returns 0 instead of throwing an error."],["It supports both positive and negative numbers for both dividend and divisor, handling various arithmetic scenarios."],["This function is available in both JavaScript and Python versions of the Earth Engine API."]]],["The `divide()` function performs division between two numbers, `left` and `right`. It's called on a `Number` object (`left`) and takes another `Number` (`right`) as an argument. The result is also a `Number`. If the `right` value is zero, the function returns 0, otherwise returns the division result. Both positive and negative numbers are allowed as arguments, as showed in the examples.\n"]]