Advertisement
SIRAKOV4444

Untitled

Mar 25th, 2020
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function numbers(input) {
  2. let number=input.shift();
  3. //let two=input.shift();
  4. if(number%2==0){
  5. console.log("even");
  6. }else{
  7. console.log("odd");
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement