JavaScript String big() Method Last Updated : 31 May, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The <big> tag in HTML is used to make the enclosed text appear slightly larger than the surrounding text. However, the <big> tag is not supported in HTML5, and its use is generally discouraged in favor of CSS for styling. Syntaxstring.big()Return Value: A string embedded within a <big> tag. Parameters: None Example 1: In the below example we can see the basic usage of the big() method. JavaScript let str = "Hello, World!"; console.log(str.big()); Output<big>Hello, World!</big> Example 2: In the below example we are using big() with a concatenated string. JavaScript let str1 = "Hello, "; let str2 = "World!"; console.log((str1 + str2).big()); Output<big>Hello, World!</big> Example 3: In the below example we are using nested HTML tags with big(). JavaScript let str = "Hello, <em>World!</em>"; console.log(str.big()); Output<big>Hello, <em>World!</em></big> Comment More infoAdvertise with us Next Article JavaScript String big() Method P pankajbind Follow Improve Article Tags : JavaScript Web Technologies JavaScript-Questions Similar Reads JavaScript BigInt toString() Method The BigInt.toString() method is an inbuilt method in JavaScript that is used to return a string representing the specified BigInt object. Syntax: bigIntObj.toString( radix ) Parameters: This function accepts a single parameter and it is optional. radix: It is an integer value in the range of 2 throu 1 min read JavaScript BigInt valueOf() Method The BigInt.toString() method is an inbuilt method in JavaScript that is used to return the wrapped primitive value of a BigInt object. Syntax: bigIntObj.valueOf() Parameters: This method does not accept any parameter. Return value: This method returns a BigInt representing the primitive value of the 1 min read JavaScript BigInt asIntN() Method The BigInt.asIntN() method is an inbuilt method in JavaScript that is used to wrap a BigInt value to a signed integer between -2width-1 and 2width-1-1. Syntax: BigInt.asIntN(width, bigint);; Parameters: This function accepts two parameters as mentioned above and described below: width: This paramete 2 min read JavaScript BigInt Reference JavaScript BigInt is an inbuilt object in JavaScript that provides a way to represent whole numbers larger than 253-1 which is the largest number that can represent with the Number primitive. It is represented by the MAX_SAFE_INTEGER constant.Example: This example creates a BigInt by appending n at 2 min read JavaScript BigInt JavaScript BigInt is a built-in object that represents whole numbers larger than (2^{53} - 1). A BigInt value, also known as a bigint primitive, is created by appending n to an integer literal or by calling the BigInt() function with an integer or string value. It allows precise arithmetic with inte 4 min read Like