Created
June 18, 2013 19:51
-
-
Save easierbycode/5808679 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GlobalTranz | |
headquarters: 'AZ', revenue: true, industryLeader: true | |
delivers: ['insight', 'passion', 'innovative products'] | |
logistics: ['technologySolutions', 'service', 'efficiency'] | |
culture: | |
workHard:true | |
recognizedSuccess:true | |
careerAdvancement:true | |
facts: | |
benefits:true | |
competitiveCompensation:true | |
referralBonusPto:true | |
@applyNow() if interested | |
applyNow: -> | |
location = 'http://globaltranz.com/careers' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var GlobalTranz; | |
GlobalTranz = (function() { | |
function GlobalTranz() {} | |
GlobalTranz.prototype.headquarters = 'AZ'; | |
GlobalTranz.prototype.revenue = true; | |
GlobalTranz.prototype.industryLeader = true; | |
GlobalTranz.prototype.delivers = ['insight', 'passion', 'innovative products']; | |
GlobalTranz.prototype.logistics = ['technologySolutions', 'service', 'efficiency']; | |
GlobalTranz.prototype.culture = { | |
workHard: true, | |
recognizedSuccess: true, | |
careerAdvancement: true | |
}; | |
GlobalTranz.prototype.facts = { | |
benefits: true, | |
competitiveCompensation: true, | |
referralBonusPto: true | |
}; | |
if (interested) { | |
GlobalTranz.applyNow(); | |
} | |
GlobalTranz.prototype.applyNow = function() { | |
var location; | |
return location = 'http://globaltranz.com/careers'; | |
}; | |
return GlobalTranz; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment