The big() method displays a string in a big font. This method returns the string embedded in the <big> tag, like this:
The big() method displays a string in a big font. This method returns the string embedded in the <big> tag, like this:
<big>string</big>
string.big()
None
A string embedded in the <big> tag
Display a string in a big font:
var str = "Hello World!"; var result = str.big(); console.log(result);