5 lines
131 B
JavaScript
5 lines
131 B
JavaScript
|
|
// Test that String.fromCharCode specializes only for the fixed unary case.
|
||
|
|
|
||
|
|
String.fromCharCode(65);
|
||
|
|
String.fromCharCode(65, 66);
|