Advertisement
Btwonu

Mirror

Mar 28th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function main(num) {
  2.     num = Number(num);
  3.  
  4. //Mirror solution
  5.     if ( (num < 100 || num > 200) && num != 0) {
  6.         console.log('invalid');
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement