Skip to content

Instantly share code, notes, and snippets.

@tantalor
Forked from jedsundwall/gist:2244379
Created March 29, 2012 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tantalor/2244383 to your computer and use it in GitHub Desktop.
Save tantalor/2244383 to your computer and use it in GitHub Desktop.
hacking google spreadhseets
function makeURL(firstname,lastname) {
var name = firstname + lastname;
if (!name) {
return null;
} else {
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment