On Win 7 1123, create this script. Position the insertion cursor immediately prior to the "r" character in "return". Type two "/" characters to comment out the line. Do this for both functions. On the second function the editor positions the // at the end of the line rather than at the beginning.
Mike
function f() {
return 1;
}
function g() {
return 1 *
2;
}
function f() {
//return 1;
}
function g() {
return 1 *//
2;
}