Convert Yen to USD

Published by Nomove in

Create a function that can turn JPY (Japanese yen) to USD (American dollar).

Examples

YenToUsd(1) ➞ 0.01

YenToUsd(500) ➞ 4.65

YenToUsd(649) ➞ 6.04

Notes

  • Each JPY to USD conversion is JPY / 107.5
  • Round the result to two decimal places.
Watch a quick demo on how Edabit works.