Guest User

Untitled

a guest
May 6th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. var f = x => x*x;
  2.  
  3. var f = function(x) {
  4. return x*x;
  5. }
  6.  
  7. a = x != 0 ? a/x : 0;
  8.  
  9. if(x != 0){
  10. a /= x;
  11. } else {
  12. a = 0;
  13. }
Add Comment
Please, Sign In to add comment