JavaScript Reference/Javascript Methods/toUpperCase — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"toUpperCase()" Example
<html>
<body>
<button onclick="var myS = new String("Sample String"); alert(myS.toUpperCase());">
convert "Sample String" to uppercase
</button>
</body>
</html>
"toUpperCase()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |String |
+----------------+--------------------------------------------------------------+
"toUpperCase()" Syntax Parameters and Note
Note:
Converts a String to uppercase.
Syntax:
stringName.toUpperCase()