Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function test (myCondition) {
  2. if (myCondition == 2) {
  3. return "It was true";
  4. }
  5. return "It was false";
  6. }
  7. console.log(test(true)); // returns "It was true"
  8. console.log(test(false)); // returns "It was false"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement