js-refactor
js-refactor copied to clipboard
"++" operator is getting wiped when trying to rename a variable
for (var test = 0; test < 666; test++){
//rename the test variable
test = ++test;
}