Advertisement
Guest User

Untitled

a guest
Mar 7th, 2023
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let a = 33, b = 26, c = "26";
  2.  
  3. console.log(a == b);  // Task 1
  4. console.log(b === c);  // Task 2
  5. console.log(a >= c);  // Task 3
  6. console.log(b < c);  // Task 4
  7. console.log(a > b && b == c);  // Task 5
  8. console.log(a == b || c < a);  // Task 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement