``` #Good Console.log byte_size(<<1,2,3>>) 3 #Bad Console.log byte_size("\x01\x02\x03") undefined #Bad Console.log byte_size("abc") undefined ```