Guest User

Untitled

a guest
Apr 26th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var a = 100
  2. var b = 3
  3.  
  4. function divideWithRemainder(a, b){
  5. return {
  6. quotient: ~~(a / b),
  7. remainder: a % b
  8. };
  9. }
  10.  
  11. console.log(divideWithRemainder(a, b));
  12. // {
  13. // quotient: 33,
  14. // remainder: 1
  15. // }
Add Comment
Please, Sign In to add comment