Definition and Usage The big() method is used to display a string in a big font. Syntax stringObject.big() Example In this example...
Definition and Usage
The big() method is used to display a string in a big font.Syntax
stringObject.big() |
Example
In this example "Hello world!" will be displayed in a big font:<script type="text/javascript"> var str="Hello world!"; document.write(str.big()); </script> |