[[["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.subtract()` is a method that subtracts the `right` value from the `left` (this) value, returning the numerical difference."],["Both `left` and `right` arguments should be of type Number, allowing for subtraction operations between numerical values."],["This method is available in both JavaScript and Python within the Earth Engine environment."],["The examples provided demonstrate how the `subtract()` method can be used with various number inputs, including positive, negative and floating-point values."]]],["The `subtract` method takes two numerical inputs: a `left` value (the initial number) and a `right` value (the number to subtract). It calculates the difference, returning the result as a Number. For instance, using `ee.Number(5).subtract(10)` computes 5 - 10, which results in -5. The method is available in both JavaScript and Python environments, with identical behavior. Python requires `geemap` for use. The examples show subtractions with integer and float values, including negative values.\n"]]