[[["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.toInt8()` casts a given number to a signed 8-bit integer, which has a valid range of -128 to 127."],["Numbers exceeding the maximum value of an 8-bit integer will be truncated to the maximum value (127)."],["Numbers falling below the minimum value of an 8-bit integer will be truncated to the minimum value (-128)."],["Floating-point numbers cast to signed 8-bit integers will lose their decimal precision."]]],["The `toInt8()` method casts a numerical input to a signed 8-bit integer, with a range of -128 to 127. Floating-point numbers lose their decimal precision during this cast. Numbers exceeding the maximum range (127) are converted to 127, and those below the minimum (-128) become -128. The function takes a Number as input and returns a Number that is an 8 bit signed integer.\n"]]