@@ -0,0 +1,9 @@
let output = "";
let pass = 3;
for (let i = 0; i < 10; i++){
if (i === pass){
continue;
}
output += i;
console.log(output);
The note is not visible to the blocked user.