JavaScript Tutorial/String/valueOf — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
string.valueOf()
The valueOf() method returns the primitive value of the object. In terms of an instance of a String object, this method returns the string itself.
<html>
<script language="JavaScript1.1">
<!--
var myString = new String("Here is some random text.");
document.write("The value of my string instance is: " + myString.valueOf());
document.close();
-->
</script>
</html>