UNPKG

@dxzmpk/js-algorithms-data-structures

Version:

Algorithms and data-structures implemented on JavaScript

9 lines (8 loc) 190 B
/** * Switch the sign of the number using "Twos Complement" approach. * @param {number} number * @return {number} */ export default function switchSign(number) { return ~number + 1; }