JavaScript Tutorial/String/toLowerCase — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
string.toLowerCase()
The toLowerCase() method converts the characters to all lowercase values.
<html>
<script language="JavaScript">
<!--
var myString = new String(prompt("Please enter some various case text", ""));
document.write(myString.toLowerCase());
document.close();
-->
</script>
</html>