[[["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.toShort()` casts a given number to a signed 16-bit integer, effectively restricting its value range to [-32768, 32767]."],["Casting floating-point numbers using this method results in the loss of decimal precision, returning only the integer part."],["If the input number exceeds the maximum value for a signed 16-bit integer (32767), the function returns 32767."],["Similarly, if the input number falls below the minimum value for a signed 16-bit integer (-32768), the function returns -32768."]]],["The `toShort()` method casts a number to a signed 16-bit integer, ranging from -32768 to 32767. Floating-point numbers lose decimal precision when cast. Values exceeding the maximum (32767) are converted to 32767, and values below the minimum (-32768) become -32768. The method takes a number as input and returns a signed 16-bit integer.\n"]]