MillisecondTruncationCheckAfterCopyConstructor.js 545 B

12345678910
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. var a = new Date(Date.now());
  6. a.setMilliseconds(491);
  7. var b = new Date(a);
  8. WScript.Echo("Date A: ",a.getMilliseconds());
  9. WScript.Echo("Date B: ",b.getMilliseconds());