Unit Testing Exercise - Problem 2 - Неточност
Здравейте,
има неточност в задача 2 от упражнението.
По услове, фунцията , която трябва да тестваме е:
function lookupChar(string, index) {
if (typeof(string) !== 'string' || !Number.isInteger(index)) {
return "Incorrect Type!";
}
if (string.length <= index || index < 0) {
return "Incorrect Parameters!";
}
return string.charAt(index);
}
а джъдж очаква вместо Incorrect Type! -> undefined
и вместо Incorrect Parameters! -> Incorrect index