bitwiseOr
Perform bitwise OR on two binary values.
binary1(required): first operandbinary2(required): second operand (same length)
utlx
{
combined: toHex(bitwiseOr(fromHex("AA00"), fromHex("0055")))
}
// Output: {"combined": "aa55"}