跳到主要内容

UnmatchedCloseParen

等级:错误

发现未匹配的 )

如何修复

删除没有对应左括号的 ),或补全分组/调用表达式。

修改前

let value = 1;
) 

修复后

let value = (1);