Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function check(num1, num2, op) {
  2. return num1 op num2; //just an example of what the output should be like
  3. }
  4.  
  5. check(1,2, >); //obviously this is a syntax error, but is there some kind of other object or bitwise operator of some kind I can plug into the place of ">" and change the source function somehow?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement