Number.prototype._isPrime=function(){
for(let i=1;i<this;i++){
return this/i!==0
}          
}