| 1234567891011121314151617181920212223 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function test(arg0, arg1) {
- this.prop0 = arg0;
- this.prop1 = arg1;
- }
- var obj = new test();
- delete obj.prop1;
- delete obj.prop0;
- obj.a = 5;
- obj.b = 10;
- obj.c = 15;
- WScript.Echo(obj.a);
- WScript.Echo(obj.b);
- WScript.Echo(obj.c);
- WScript.Echo(obj.prop0);
- WScript.Echo(obj.prop1);
|