| 1234567891011121314151617181920212223242526272829 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- var x = new Date();
- var y = x;
- var z = new Date(2012, 1);
- y.foo = 3;
- var w = Date.now();
- WScript.SetTimeout(testFunction, 50);
- /////////////////
- function testFunction()
- {
- telemetryLog(`x === y: ${x === y}`, true); //true
- telemetryLog(`w !== z: ${w !== z.valueOf()}`, true); //true
- telemetryLog(`y.foo: ${y.foo}`, true); //3
- telemetryLog(`x.foo: ${x.foo}`, true); //3
- telemetryLog(`w - z > 0: ${w - z.valueOf() > 0}`, true); //true
- telemetryLog(`x - y: ${x.valueOf() - y.valueOf()}`, true); //0
- }
|