Line 54 return "The " + formatCasing(property) + " of " + item.StateName + " is <say-as interpret-as='spell-out'>" + item[property] + "</say-as>. "
and
Line 57 return "The " + formatCasing(property) + " of " + item.StateName + " is " + item[property] + ". "
are missing a semicolon at the end.
Also since return is being performed on 54 and 57, 55 and 58's break is unreachable I believe.
Line 294 let property = this.attributes["quizproperty"] is also missing a semicolon at the end.
Line 176 const counter = 0;
Line 374 'function getRandomSymbolSpeech(symbol)'
Line 404 let speechCon = "";
These all three are defined but never used within the js.
Is this intended?
Hello all,
In index.js
Line 54
return "The " + formatCasing(property) + " of " + item.StateName + " is <say-as interpret-as='spell-out'>" + item[property] + "</say-as>. "
and Line 57return "The " + formatCasing(property) + " of " + item.StateName + " is " + item[property] + ". "
are missing a semicolon at the end.Also since
return
is being performed on 54 and 57, 55 and 58'sbreak
is unreachable I believe.Line 294
let property = this.attributes["quizproperty"]
is also missing a semicolon at the end.Line 176
const counter = 0;
Line 374 'function getRandomSymbolSpeech(symbol)' Line 404let speechCon = "";
These all three are defined but never used within the js. Is this intended?