P4featgood first issue
倉庫指標
- Star
- (7,176 star)
- PR 合併指標
- (平均合併 3天 4小時) (30 天內合併 1 個 PR)
描述
I used: https://closure-compiler.appspot.com/home
Input code:
document.write(String.fromCharCode(115));
Expected output:
document.write("s")
Actual output:
document.write(String.fromCharCode(115));
I expected the String.fromCharCode function to be removed to just the resulting character.