Using String big() method to coding in Javascript/JS

This JavaScript tutorial explains how to use the string method referred to as big() with syntax and examples.

Description

In JavaScript, big() is a string method that is used to create the HTML element. Because the big() method is a method of the String object, it must be invoked through a precise occasion of the String class.

Syntax

In JavaScript, the syntax for the big() method is:

string.big();

Parameters or Arguments

There are no parameters or arguments for the big() method.

Returns

The big() method returns a reproduction of string enclosed in and tags.

Note

The big() method does not trade the cost of the authentic string.

Example

Let’s take a seem at an instance of how to use the big() approach in JavaScript.

For example:

var totn_string = 'TechOnTheNet';

console.log(totn_string.big());

In this example, we have declared a variable known as totn_string that is assigned the string fee of ‘TechOnTheNet’. We have then invoked the big() method of the totn_string variable to return a string that contains the HTML element.

We have written the output of the big() technique to the net browser console log, for demonstration purposes, to exhibit what the big() approach returns.

The following will be output to the web browser console log:

<big>TechOnTheNet</big>

As you can see, the big() method created a string that incorporates a element. The value of the totn_string variable (which is ‘TechOnTheNet’) is enclosed inside the and tags.