Andrew Walker
var Andrew = ({
setJob : function (jobType) {
this.job = jobType;
},
interests : [
"emerging web technologies",
"mobile",
"future of javascript",
"web apps",
"biscuits"
],
personality : "super geek",
twitterHandle : "@ninjabiscuit",
init : function () {
this.setJob("front end web developer");
return this;
}
}).init();





















