Guest User

Untitled

a guest
Nov 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const isPositiveX = ( x ) => ( x > 0 )
  2.  
  3. const isNegativeX = ( x ) => !isPositiveX( x )
  4.  
  5. const isPositiveY = ( y ) => ( y > 0 )
  6.  
  7. const isNegativeY = ( y ) => !isPositiveY( y )
Add Comment
Please, Sign In to add comment