Convert Hours into Seconds

Published by Matt in

Write a function that converts hours into seconds.

Examples

how_many_seconds(2) ➞ 7200

how_many_seconds(10) ➞ 36000

how_many_seconds(24) ➞ 86400

Notes

  • 60 seconds in a minute, 60 minutes in an hour
  • Don't forget to return your answer.
Watch a quick demo on how Edabit works.