blob: 41da0523d16cb74c8cdc41d9b1f54c6710b01584 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test(arg) {
var x = String.fromCharCode(arg).charCodeAt();
WScript.Echo(x);
}
test(0);
var charCode = 0xFFFC;
for(var i = 0; i < 10; i++){
test(charCode);
charCode++;
}