Last active
April 19, 2021 03:43
-
-
Save cameronbrill/87bd039f99a487295f183a6d3384454b to your computer and use it in GitHub Desktop.
get total number of quizlet cards made by user
This file contains 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
z=0; | |
document.getElementsByClassName("SetPreview-cardBylineTermsCount").forEach(val => {z+=parseInt(val.innerText.split()[0])}); | |
console.log(z); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment