Last active
April 6, 2022 05:51
-
-
Save ratul16/bf07cb7737a4469f3a5c71dda88a3adb to your computer and use it in GitHub Desktop.
Medium like read time indicator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| readTime() { | |
| var minutes = 0; | |
| const contentText = JSON.stringify(this.page); | |
| const words = contentText.split(' ').length; | |
| const wordsPerMinute = 200; | |
| minutes = Math.ceil(words / wordsPerMinute); | |
| console.log(minutes); | |
| return minutes; | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment