Undeclared Variable
an undeclared variable:
function parseCommand(rawCommandComponent) {
let parsedCommand = null;
commandParts = rawCommandComponent.split(' ');
should be "let commandParts = ..."
1
vote
