1
ternary
8y

Looking into some javascript. Which function should I use... guess I have to start the day refactoring. What the f*ck, is good naming so hard:

...
function removeColumn(column) {
selectedColumns.remove(column);
};

function columnRemove(column) {
appliedColumns.remove(column);
};

Comments
Add Comment