Advertisement
-Annie-

ImperialUnits

May 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convert(inches) {
  2.     let feet = Math.floor(inches / 12);
  3.     let remainderInInches = inches % 12;
  4.  
  5.     console.log(`${feet}'-${remainderInInches}"`);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement