StringFromCharCode.js 565 B

12345678910111213
  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 print(value)
  6. {
  7. WScript.Echo(value);
  8. }
  9. print(String.fromCharCode(65, 66, 67));
  10. print(String.fromCharCode(65.23, 66, 67.98));
  11. print(String.fromCharCode('65', '66', '67'));