arguments4.js 503 B

1234567891011121314
  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. function foo(x, x)
  6. {
  7. return x == 2;
  8. }
  9. if (foo(1,2))
  10. WScript.Echo("Passed\n");
  11. else
  12. WScript.Echo("FAILED\n");