JavaScript Tutorial/String/bold — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
string.bold()
The bold() method converts the string to an instance of the <bold> tag.
<html>
<script language="JavaScript">
<!--
var myString = new String("Hello, World!");
document.write(myString.bold());
document.close();
-->
</script>
</html>