Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. calcBmi = (weight, height, max, cb) => {
  2.     let bmi = weight / 2;
  3.     if(cb)
  4.       cb(bmi);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement