Guest User

Untitled

a guest
Apr 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function run_tests() {
  2.  
  3. console.assert(abs(0) == 0, "abs(0) == 0");
  4.  
  5. console.assert(abs(1) == 1, "abs(1) == 1");
  6.  
  7. console.assert(abs(-1) == 1, "abs(-1) == 1");
  8.  
  9. console.assert(1/0 == 1/abs(-0), "1/0 == 1/abs(-0)");
  10.  
  11. console.assert(1/-0 != 1/abs(-0), "1/-0 != 1/abs(-0)");
  12.  
  13. }
  14.  
  15. run_tests();
Add Comment
Please, Sign In to add comment