SOURCE

//101-200所有素数
let start=101;
let end=200;
for(let i=start;i<=end;i++){
    for(let j=2;j<i;j++) {
        if(i%j==0) {
            break;
        } else {
            if(j==i-1){
                console.log(i);
            }
        }
    }
}
console 命令行工具 X clear

                    
>
console