JavaScript Tutorial/String/String Constructors — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:24, 26 мая 2010

Create String object by calling its constructor: new String()

<html>
<head>
<title>new String();</title>
<script type="text/javascript" language="javascript">
<!-- //
onload = function(){
    var s = new String("aaA");
    var upperCase = s.toUpperCase();
    document.write(upperCase);
}
// -->
</script>
</head>
<body>
</body>
</html>