how to check length of string without using .length in javascript code example
Example: how to find length of string in javascript without using length method
function strLength(s) {
var length = 0;
while (s[length] !== undefined){
length++;
}
return length;
}
console.log(strLength("Hello")); // 5
console.log(strLength("")); // 0