Skip to content

Instantly share code, notes, and snippets.

@NhanKhangg98
Created November 6, 2022 09:45
Show Gist options
  • Save NhanKhangg98/fb36ac0b1199e1372dcf75d31bd394c1 to your computer and use it in GitHub Desktop.
Save NhanKhangg98/fb36ac0b1199e1372dcf75d31bd394c1 to your computer and use it in GitHub Desktop.
function lengthOfString(str){
return str.length ? lengthOfString(str.substring(1)) + 1 : 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment