[[["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.toUint16()` casts a given Earth Engine Number to an unsigned 16-bit integer."],["The resulting value will be within the range of 0 to 65535, inclusive."],["Numbers outside this range will be clamped to the minimum or maximum value."],["Floating point numbers will lose decimal precision during the conversion."]]],["The `toUint16()` method casts a number to an unsigned 16-bit integer, with a valid range of 0 to 65535. Input values outside this range are adjusted: values exceeding 65535 become 65535, and those below 0 become 0. Floating-point numbers lose their decimal precision. The method accepts the input number as an argument and returns the cast `Number`. Example code in Javascript and Python, show the casting and boundary behaviors.\n"]]