Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function test(input){
  2.  
  3. for(let i = 0;i<input.length; i++){
  4.  
  5. if(isNaN(input[i]) && input[i] !== 'End'){
  6. console.log(`Going to ${input[i]}!`);
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement