Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. if( test == 'car' || 'one' ){
  2. console.log('spo')
  3. }
  4.  
  5. if( test == 'car' || test == 'one' ){
  6. console.log('spo')
  7. }
  8.  
  9. if( test == 'car' || 'one' ){
  10. console.log('spo')
  11. }
  12.  
  13. if( test == 'car' || 'one' != ''){
  14. console.log('spo')
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement