Advertisement
MilaDimitrovaa

USD to BGN

Nov 1st, 2020
1,992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function conventor(arg){
  2. let usd = Number(arg);
  3. let result = usd * 1.79549;
  4. console.log(result)
  5. }
  6. conventor("12.5");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement