BITXOR
function BITXOR(arg1: number = null, arg2: number = null): number | string | boolean
Description
Returns a bitwise 'Exclusive Or' of two numbers.
Parameters
- arg1
number
null Is the decimal representation of the binary number you want to evaluate.
- arg2
number
null Is the decimal representation of the binary number you want to evaluate.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.BITXOR(5, 3));