Advertisement
dhshin

practice_4

Jun 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let x = 10;
  2.  
  3. if(x < 5) console.log('5보다 작다');
  4. else if(x >= 6 && x < 10) {
  5.   console.log('6 이상 10 미만');
  6. }
  7. else if(x >= 10) {
  8.   console.log('10 이상');
  9. }
  10. else {
  11.   console.log('나는 언제 출력될까?');
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement