Skip to content

Instantly share code, notes, and snippets.

@torpedo87
Created January 6, 2017 06:53
Show Gist options
  • Save torpedo87/3383826fdd454c2d486a86ee50f0efed to your computer and use it in GitHub Desktop.
Save torpedo87/3383826fdd454c2d486a86ee50f0efed to your computer and use it in GitHub Desktop.
junwoo/codesquad
for(var i=1; i<=100; i++){
var chk=false;
for(var j=2; j<i; j++){
if(i%j===0){
chk=false;
break;
}else{
chk=true;
}
}if(i===2){
chk=true
};
if(chk===true){
console.log(i);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment