[[["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.int16()` casts a given input number to a signed 16-bit integer, within the range of -32768 to 32767."],["When casting a floating-point number, the decimal precision is lost, resulting in the integer part of the number."],["Numbers exceeding the maximum value of the signed 16-bit integer range are converted to the maximum value (32767)."],["Conversely, numbers falling below the minimum value of the signed 16-bit integer range are converted to the minimum value (-32768)."]]],["The `int16()` method casts a number to a signed 16-bit integer, with a range of -32768 to 32767. Input values outside this range are clamped to the range's minimum or maximum. Floating-point numbers lose decimal precision during the cast. The method takes an input `Number` and returns a `Number` of the signed int16 type.\n"]]