repl.txt (503B)
1 2 {{alias}}( value ) 3 Returns a BigInt. 4 5 Unlike conventional constructors, this function does **not** support the 6 `new` keyword. 7 8 This function is only supported in environments which support BigInts. 9 10 Parameters 11 ---------- 12 value: integer|string 13 Value of the BigInt. 14 15 Returns 16 ------- 17 out: BigInt 18 BigInt. 19 20 Examples 21 -------- 22 > var v = ( {{alias}} ) ? {{alias}}( '1' ) : null 23 24 25 TODO: document properties/methods 26 27 See Also 28 -------- 29