Microsoft®
JScript new Operator |
Language Reference Version 1
|
Creates a new object.
new constructor[(arguments)]The constructor argument calls object's constructor. The parentheses can be omitted if the constructor takes no arguments.
The new operator performs the following tasks:
- It creates an object with no members.
- Sets the "constructor" attribute of the new object to the constructor function.
- It calls the constructor for that object, passing a pointer to the newly created object as the this pointer.
- Returns this if the constructor doesn't return it's own object.
The constructor then initializes the object according to the arguments passed to the constructor. These are examples of valid uses of the new operator:
my_object = new Object; my_array = new Array(); my_date = new Date("Jan 5 1996");
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/inet/iis/jscript/htm/js662.htm, 2KB, , updated: 2020/2/28 22:46, local time: 2024/9/17 05:34,
44.222.131.239:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/inet/iis/jscript/htm/js662.htm"> new Operator</A> |
Did you find what you needed? |
PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.