Skip to content

Instantly share code, notes, and snippets.

@ratul16
Last active April 6, 2022 05:51
Show Gist options
  • Select an option

  • Save ratul16/bf07cb7737a4469f3a5c71dda88a3adb to your computer and use it in GitHub Desktop.

Select an option

Save ratul16/bf07cb7737a4469f3a5c71dda88a3adb to your computer and use it in GitHub Desktop.
Medium like read time indicator
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