Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. if(x === 3){
  2. console.log('hello from if statement');
  3. }
  4. else if(x === 5){
  5. console.log('x was not equal to 3 but is equal to 5xs!');
  6. }
  7. else{
  8. console.log('x was not equal to 3 or 5');
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement