nativeFloatArray_shift_unshift.js 532 B

12345678910111213141516
  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= [1, 2.2, 3.3]
  6. Array.prototype[4] = 10;
  7. function Test()
  8. {
  9. WScript.Echo(a.shift());
  10. WScript.Echo(a.unshift(100,101,103));
  11. }
  12. Test();