diff --git a/exercises/converthourstoseconds.js b/exercises/converthourstoseconds.js index 99198c8..f15d33e 100644 --- a/exercises/converthourstoseconds.js +++ b/exercises/converthourstoseconds.js @@ -7,9 +7,16 @@ // it to seconds function howManySeconds(hours) { + //Ask + let result = Number(hours) + convertor = result * 60; + console.log(convertor); + //convert that hour to second + //console.log // Your function should return an integer // of how many seconds are in the hour } +howManySeconds(24); //Topics: Variables,functions, Math diff --git a/functions/sum/exercise/index.html b/functions/sum/exercise/index.html index 41e979a..99a5991 100644 --- a/functions/sum/exercise/index.html +++ b/functions/sum/exercise/index.html @@ -9,14 +9,7 @@
- - - -