function trimComment(line){
let comment = "";
const idx = line.indexOf("//");
if (idx >= 0){
comment = line.substring(idx + 2).trim();
}
return comment;
}
// 示例:
const code = "let x = 5; // initialize variable x";
console.log(trimComment(code)); // 输出:"initialize variable x"