{{alias}}( x ) Rounds a numeric value to the nearest power of two toward positive infinity. Parameters ---------- x: number Input value. Returns ------- y: number Rounded value. Examples -------- > var y = {{alias}}( 3.14 ) 4.0 > y = {{alias}}( -4.2 ) -4.0 > y = {{alias}}( -4.6 ) -4.0 > y = {{alias}}( 9.5 ) 16.0 > y = {{alias}}( 13.0 ) 16.0 > y = {{alias}}( -13.0 ) -8.0 > y = {{alias}}( -0.0 ) -0.0 See Also --------