substr is not a function
Hej Eksperter.Jeg har lige et lille spørgsmål omkring et mindre javascript.
Scriptet er som følgende:
function resolveCommandId(commandId) {
if (commandId) {
try{
if (commandId.substr(0, 8) != 'command_') {
commandId = 'command_' + commandId;
}
}catch (e) {
// Ignore
}
return commandId;
}
return null;
}
Fejlmeddelelsen er som følgende:
"TypeError: commandId.substr is not a function"
Håber i kan hjælp :)