Posts Tagged “jobapp.js”
Location: Tampa, FL
URL: www.TricycleStudios.com
function applyForJob( applicant ) {
var skillPoints = 0;
// Skills an applicant needs.
var requiredSkills = [ “Javascript”, “CSS3”, “HTML5”, “Mobile Web”, “OS X” ];
// These skills would be super.
var extraSkills = [ “Python”, “Node.js”, “iOS”, “Linux” ];
// Attributes needed in an applicant.
var attributes = [
“Implements clean code”,
“Codes with reusability in mind”,
“Knows modern JS tools and techniques”,
“Works well as both a leader and a member of a team”
];
// Check attributes.
for ( attributeName in attributes ) {
if ( !applicant.attributes[ attributeName ] ) return;
}
// Add up the skills.
for ( skillName in requiredSkills.concat( extraSkills ) ) {
skillsPoints += applicant.skills[ skillName ];
}
// Do we hire this applicant?
if ( skillPoints > 500 ) hire();
}
To apply: // contact: resumes@tricyclestudios.com
View full post on Recent Programming Jobs