Guest User

Untitled

a guest
Nov 21st, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. var teste = Math.abs(10)-Math.abs(6); // 4
  2. var teste = Math.abs(10-6); // 4
  3. var teste = Math.abs(-10-6); // 16
  4. var teste = Math.abs(-10-(-6)) // 4
Add Comment
Please, Sign In to add comment