I’m trying to achieve the following pseudo code:
function processAboutLink(){
}
function processServicesLink(){
}
var variableName = 'about';
process + variableName + Link();
var variableName = 'services';
process + variableName + Link();
I’m aware that the code above isn’t real but is a logical representation. Can anyone point me in the right direction?
It would be more convenient to have an object, because you can access properties dynamically:
Then, it’s as easy as:
This is basically the same as
processLinkFunctions.about()ifvariableName === "about".