Skip to content

Instantly share code, notes, and snippets.

@MohammedALREAI
Created March 17, 2021 20:31
Show Gist options
  • Select an option

  • Save MohammedALREAI/da8f7623e03bbd328b1c19792455c227 to your computer and use it in GitHub Desktop.

Select an option

Save MohammedALREAI/da8f7623e03bbd328b1c19792455c227 to your computer and use it in GitHub Desktop.
isOdd
function isOdd(l=3,r=9){
let arr=[]
for(;l<=r;l++){
if(l%2===0){
continue;
}
arr.push(l)
}
return arr.map(item=>item)
}
console.log(isOdd())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment