5 lines
80 B
JavaScript
5 lines
80 B
JavaScript
// php chr() 대응
|
|
function chr(code)
|
|
{
|
|
return String.fromCharCode(code);
|
|
} |