// // Write a function that takes a string and returns its length without using built in properties (such as .length or .size()). //
Anonymous
function length(str) { let length = 0; while (str[length]) { length++; } return length; }
Check out your Company Bowl for anonymous work chats.