Skip to content

Instantly share code, notes, and snippets.

@jdaigle
Created September 10, 2012 17:04
Show Gist options
  • Save jdaigle/3692168 to your computer and use it in GitHub Desktop.
Save jdaigle/3692168 to your computer and use it in GitHub Desktop.
var name = "John Doe";
function getFirstName(fullName) {
var next = fullName[0];
var i = 0;
var length = fullName.length;
while (i < length && next !== " ") {
console.log(fullName[i]);
i++;
next = fullName[i];
}
}
getFirstName(name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment