Skip to content

Instantly share code, notes, and snippets.

@gpDA
Created February 23, 2022 18:43
Show Gist options
  • Save gpDA/0ec820ed13b3349bf5f40448d6e0c142 to your computer and use it in GitHub Desktop.
Save gpDA/0ec820ed13b3349bf5f40448d6e0c142 to your computer and use it in GitHub Desktop.
function recLen(str) {
if (str == '') return 0
return recLen(str.substring(1)) + 1;
}
let str ="abcd";
console.log(recLen(str));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment