JavaScript String big() Method

Definition and Usage

The 'big()' method in JavaScript has been deprecated.

Please avoid using it.

It may stop running at any time in your browser.

big() The method returns the string embedded in the <big> tag:

<big>string</big>

HTML5 does not support the <big> tag.

Example

let text = "Hello World!";
let result = text.big();

Try It Yourself

Syntax

string.big()

Parameters

No parameters.

Return Value

String embedded in the <big> tag.