[[["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.bitwiseNot()` calculates the bitwise NOT of a number, essentially flipping each bit in the binary representation of the input."],["The result is interpreted as a signed integer using the smallest data type that can accommodate the input value."],["For example, the bitwise NOT of 25 (binary 00011001) is -26 (binary 11100110 in signed 8-bit representation)."]]],["The `bitwiseNot()` method computes the bitwise NOT of a given number. It takes a number as input and returns a number. The operation inverts each bit in the binary representation of the input. The result is interpreted using the smallest signed integer type capable of holding the input. For example, inputting 25 (00011001 in binary) results in -26 (11100110 in binary) after the bits are flipped.\n"]]