JavaScript Tutorial/Operators/new
Версия от 18:52, 25 мая 2010; (обсуждение)
new
The new operator is used to create a new object.
<html>
<body>
<script language="JavaScript">
<!--
var myArray = new Array();
-->
</script>
</body>
</html>