Skip to content

Instantly share code, notes, and snippets.

@easierbycode
Created June 18, 2013 19:51
Show Gist options
  • Save easierbycode/5808679 to your computer and use it in GitHub Desktop.
Save easierbycode/5808679 to your computer and use it in GitHub Desktop.
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'
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