i=false;
do{
i++;
console.log(i);
}
while(String(i).length<(true+true+true))
Note that JS treats “false” value as 0 and True as 1 in arithmetic operations
i=false;
do{
i++;
console.log(i);
}
while(String(i).length<(true+true+true))
Note that JS treats “false” value as 0 and True as 1 in arithmetic operations