I see it translates to a short-circuiting OR instead of a bitwise OR:
Code: (Select All)
await QB.sub_Print([ 10 || 20]);
temp fix:
Code: (Select All)
print 10 or 20
dim z
$if Javascript then
z = 10 | 20
$end if
print z