diff --git a/readMe.md b/readMe.md index 1c2ca5bc..5d37bba2 100644 --- a/readMe.md +++ b/readMe.md @@ -1650,11 +1650,11 @@ console.log(now.getMinutes()) // 56, because the time is 00:56:41 ### Getting seconds -Let's extract or get the minutes from a time object. +Let's extract or get the seconds from a time object. ```js const now = new Date () // -console.log(now.getMinutes()) // 56, because the time is 00:56:41 +console.log(now.getSeconds()) // 41, because the time is 00:56:41 ``` ### Getting time