Brandon Francis
Coding by day... probably still coding by night.
function
getBrandon
() {
// Create a new Brandon Francis
var
brandon =
new
Person();
// Set up some ways for contact
brandon.contact
(
"
email
"
,
"
LinkedIn
"
,
"
GitHub
"
);
// Add some things he has done
brandon.start
(
"
GameTuts
"
).create(
"
Modio
"
);
// Add some finishing touches
brandon.favoriteThing
(
"
"
);
// Return the finished Brandon
return
brandon;
}