
- Javascript Basics Tutorial
- Javascript - Home
- JavaScript - Overview
- JavaScript - Features
- JavaScript - Enabling
- JavaScript - Placement
- JavaScript - Syntax
- JavaScript - Hello World
- JavaScript - Console.log()
- JavaScript - Comments
- JavaScript - Variables
- JavaScript - let Statement
- JavaScript - Constants
- JavaScript - Data Types
- JavaScript - Type Conversions
- JavaScript - Strict Mode
- JavaScript - Reserved Keywords
- JavaScript Operators
- JavaScript - Operators
- JavaScript - Arithmetic Operators
- JavaScript - Comparison Operators
- JavaScript - Logical Operators
- JavaScript - Bitwise Operators
- JavaScript - Assignment Operators
- JavaScript - Conditional Operators
- JavaScript - typeof Operator
- JavaScript - Nullish Coalescing Operator
- JavaScript - Delete Operator
- JavaScript - Comma Operator
- JavaScript - Grouping Operator
- JavaScript - Yield Operator
- JavaScript - Spread Operator
- JavaScript - Exponentiation Operator
- JavaScript - Operator Precedence
- JavaScript Control Flow
- JavaScript - If...Else
- JavaScript - While Loop
- JavaScript - For Loop
- JavaScript - For...in
- Javascript - For...of
- JavaScript - Loop Control
- JavaScript - Break Statement
- JavaScript - Continue Statement
- JavaScript - Switch Case
- JavaScript - User Defined Iterators
- JavaScript Functions
- JavaScript - Functions
- JavaScript - Function Expressions
- JavaScript - Function Parameters
- JavaScript - Default Parameters
- JavaScript - Function() Constructor
- JavaScript - Function Hoisting
- JavaScript - Self-Invoking Functions
- JavaScript - Arrow Functions
- JavaScript - Function Invocation
- JavaScript - Function call()
- JavaScript - Function apply()
- JavaScript - Function bind()
- JavaScript - Closures
- JavaScript - Variable Scope
- JavaScript - Global Variables
- JavaScript - Smart Function Parameters
- JavaScript Objects
- JavaScript - Number
- JavaScript - Boolean
- JavaScript - Strings
- JavaScript - Arrays
- JavaScript - Date
- JavaScript - Math
- JavaScript - RegExp
- JavaScript - Symbol
- JavaScript - Sets
- JavaScript - WeakSet
- JavaScript - Maps
- JavaScript - WeakMap
- JavaScript - Iterables
- JavaScript - Reflect
- JavaScript - TypedArray
- JavaScript - Template Literals
- JavaScript - Tagged Templates
- Object Oriented JavaScript
- JavaScript - Objects
- JavaScript - Classes
- JavaScript - Object Properties
- JavaScript - Object Methods
- JavaScript - Static Methods
- JavaScript - Display Objects
- JavaScript - Object Accessors
- JavaScript - Object Constructors
- JavaScript - Native Prototypes
- JavaScript - ES5 Object Methods
- JavaScript - Encapsulation
- JavaScript - Inheritance
- JavaScript - Abstraction
- JavaScript - Polymorphism
- JavaScript - Destructuring Assignment
- JavaScript - Object Destructuring
- JavaScript - Array Destructuring
- JavaScript - Nested Destructuring
- JavaScript - Optional Chaining
- JavaScript - Global Object
- JavaScript - Mixins
- JavaScript - Proxies
- JavaScript Versions
- JavaScript - History
- JavaScript - Versions
- JavaScript - ES5
- JavaScript - ES6
- ECMAScript 2016
- ECMAScript 2017
- ECMAScript 2018
- ECMAScript 2019
- ECMAScript 2020
- ECMAScript 2021
- ECMAScript 2022
- JavaScript Cookies
- JavaScript - Cookies
- JavaScript - Cookie Attributes
- JavaScript - Deleting Cookies
- JavaScript Browser BOM
- JavaScript - Browser Object Model
- JavaScript - Window Object
- JavaScript - Document Object
- JavaScript - Screen Object
- JavaScript - History Object
- JavaScript - Navigator Object
- JavaScript - Location Object
- JavaScript - Console Object
- JavaScript Web APIs
- JavaScript - Web API
- JavaScript - History API
- JavaScript - Storage API
- JavaScript - Forms API
- JavaScript - Worker API
- JavaScript - Fetch API
- JavaScript - Geolocation API
- JavaScript Events
- JavaScript - Events
- JavaScript - DOM Events
- JavaScript - addEventListener()
- JavaScript - Mouse Events
- JavaScript - Keyboard Events
- JavaScript - Form Events
- JavaScript - Window/Document Events
- JavaScript - Event Delegation
- JavaScript - Event Bubbling
- JavaScript - Event Capturing
- JavaScript - Custom Events
- JavaScript Error Handling
- JavaScript - Error Handling
- JavaScript - try...catch
- JavaScript - Debugging
- JavaScript - Custom Errors
- JavaScript - Extending Errors
- JavaScript Important Keywords
- JavaScript - this Keyword
- JavaScript - void Keyword
- JavaScript - new Keyword
- JavaScript - var Keyword
- JavaScript HTML DOM
- JavaScript - HTML DOM
- JavaScript - DOM Methods
- JavaScript - DOM Document
- JavaScript - DOM Elements
- JavaScript - DOM Forms
- JavaScript - Changing HTML
- JavaScript - Changing CSS
- JavaScript - DOM Animation
- JavaScript - DOM Navigation
- JavaScript - DOM Collections
- JavaScript - DOM Node Lists
- JavaScript Miscellaneous
- JavaScript - Ajax
- JavaScript - Async Iteration
- JavaScript - Atomics Objects
- JavaScript - Rest Parameter
- JavaScript - Page Redirect
- JavaScript - Dialog Boxes
- JavaScript - Page Printing
- JavaScript - Validations
- JavaScript - Animation
- JavaScript - Multimedia
- JavaScript - Image Map
- JavaScript - Browsers
- JavaScript - JSON
- JavaScript - Multiline Strings
- JavaScript - Date Formats
- JavaScript - Get Date Methods
- JavaScript - Set Date Methods
- JavaScript - Modules
- JavaScript - Dynamic Imports
- JavaScript - BigInt
- JavaScript - Blob
- JavaScript - Unicode
- JavaScript - Shallow Copy
- JavaScript - Call Stack
- JavaScript - Reference Type
- JavaScript - IndexedDB
- JavaScript - Clickjacking Attack
- JavaScript - Currying
- JavaScript - Graphics
- JavaScript - Canvas
- JavaScript - Debouncing
- JavaScript - Performance
- JavaScript - Style Guide
- JavaScript Useful Resources
- JavaScript - Questions And Answers
- JavaScript - Quick Guide
- JavaScript - Functions
- JavaScript - Resources
JavaScript - BigInt
BigInt
The BigInt data type in JavaScript is a numeric primitive that can represent integers with arbitrary magnitude. This is in contrast to the Number data type, which is limited to representing integers between -(253 - 1) and 253 - 1.
JavaScript which powers dynamic web applications, traditionally employs the Number type for numeric representations in accordance with double-precision floating-point format of the widely adopted IEEE-754 standard. This standard imposes a significant constraint: it can precisely represent only up to 253 - 1 as its maximum safe integer. However, crossing this numerical threshold starts to erode fidelity of numeric values and introduces potential inaccuracies into critical computations.
JavaScript introduced the BigInt data type in response to these limitations; as its name suggests BigInt addresses the shortcomings of finite precision. This capability, proving indispensable in various scenarios notably within fields such as cryptographic algorithms, financial computations and intricate mathematical operations demanding utmost precision: it allows for the representation of integers with arbitrary accuracy, a significant advancement.
Declaration and Initialization
You can create a BigInt using a numeric literal followed by the n suffix or by using the BigInt() constructor.
const bigIntLiteral = 123n; const anotherBigInt = BigInt(456);
It's important to note that attempting to mix regular numbers and BigInt without explicit conversion can result in an error.
Basic Operations
BigInt supports standard arithmetic operations like addition, subtraction, multiplication, and division. When performing operations, both operands must be of type BigInt.
const a = 123n; const b = 456n; const sum = a + b; // 579n const product = a * b; // 56088n
Comparison
BigInt values can be compared using standard comparison operators, such as <, >, <=, >=, and ===.
const a = 123n; const b = 456n; a > b; // false a === b; // false
Conversions
Converting between BigInt and regular numbers is possible, but keep in mind that there might be a loss of precision for very large BigInt values.
const bigIntValue = BigInt("12345678901234567890"); const regularNumber = Number(bigIntValue); const bigIntValue = BigInt("12345678901234567890"); const regularNumber = Number(bigIntValue);
Examples
Example 1: Simple BigInt Arithmetic
In this example we demonstrate addition and multiplication of 2 BigInt numbers num1 and num2 who’s values are 123n and 456n respectively. By enabling the accurate representation of large integer values without risking precision loss, BigInt overcomes a potential shortcoming in regular JavaScript numbers.
<!DOCTYPE html> <html> <body> <h2>Simple BigInt Arithmetic</h2> <p id="result"></p> <script> const num1 = 123n; const num2 = 456n; const sum = num1 + num2; const product = num1 * num2; document.addEventListener("DOMContentLoaded", function () { document.getElementById("result").innerText = `Sum of ${num1} & ${num2} is ${sum} and their product: ${product}`; }); </script> </body> </html>
Example 2: Fibonacci Sequence Generator with BigInt
The Fibonacci sequence: a series of numbers in which each number is the sum of its two preceding ones; employs BigInt to handle larger values exceeding the precision limits of regular JavaScript numbers. Through the generateFibonacci function, an array serves as storage for these sequence values, guaranteeing precise calculations even for terms with substantial numeric magnitude.
<!DOCTYPE html> <html> <body> <h2>Fibonacci Sequence</h2> <p id="result"></p> <script> function generateFibonacci(n) { const sequence = [0n, 1n]; for (let i = 2; i <= n; i++) { sequence[i] = sequence[i - 1] + sequence[i - 2]; } return sequence; } document.addEventListener("DOMContentLoaded", function () { const result = generateFibonacci(20); document.getElementById("result").innerText = "Fibonacci Sequence of 1st 20 terms: " + result.join(", "); }); </script> </body> </html>
Example 3: Factorial Calculator with BigInt
Factorial is the product of all the positive integers less than or equal to the number. In order to find the factorial we have made use of BigInt. For small numbers like 5 & 10, a regular number would work but what happens when we have to find the factorial of 10000, the output would be too huge. Hence BigInt would come to our rescue. In this example we find the factorial of 20n with the help of a loop.
<!DOCTYPE html> <html> <body> <h2>Factorial of a Large Number</h2> <p id="result"></p> <script> function calculateFactorial() { const num = 20n; // Calculate factorial of 20 let result = 1n; for (let i = 2n; i <= num; i++) { result *= i; } document.getElementById("result").innerText = "Factorial of 20 is " + result; } document.addEventListener("DOMContentLoaded", function () { calculateFactorial(); }); </script> </body> </html>
Example 4: BigInt Color Square
Utilizing BigInt in this example, we generate random colours within our predefined parameters and apply them to the colorSquare for demonstration. The generation of a random colour involves multiplication: a floating-point number between 0 and 1--obtained through Math.random() – is multiplied by the maximum color value. We subsequently round down this result to its nearest integer via Math.floor(), before converting it into BigInt using BigInt(). The BigInt generated is the converted to a hexadecimal string and returned.
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; } #colorSquare { width: 400px; height: 200px; border: 2px solid #000; } </style> </head> <body> <h2>BigInt Color Example</h2> <div id="colorSquare"></div> <script> function generateRandomColor() { const maxColorValue = 16777215n; // 0xFFFFFF in hexadecimal const randomColor = BigInt(Math.floor(Math.random() * Number(maxColorValue))); return `#${randomColor.toString(16).padStart(6, '0')}`; } const colorSquare = document.getElementById('colorSquare'); colorSquare.style.backgroundColor = generateRandomColor(); </script> </body> </html>
Error Handling with BigInt
This code demonstrates a unique case of adding BigInt with regular numbers. In JavaScript, we need to perform explicit conversion to BigInt. When we tried to perform the addition of 42 (regular number) with 42n (or BigInt), it threw an error which caught and displayed on the screen with the help of try catch.
<!DOCTYPE html> <html> <body> <h2>Adding BigInt & Regular Number</h2> <div id="output"></div> <script> const regularNumber = 42; const bigIntValue = BigInt(regularNumber); // Explicit conversion document.getElementById("output").innerHTML = `<p>Regular Number: ${regularNumber}</p>`+ `<p>BigInt Value: ${bigIntValue}</p>` + `<p>Regular Number + BigInt Value results in:</p>`; try { const result = regularNumber + bigIntValue; document.getElementById("output").innerHTML += `Result: ${result}`; } catch (e) { document.getElementById("output").innerHTML += `Error: ${e}`; } </script> </body> </html>
To Continue Learning Please Login