- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你能帮我解决这个错误吗:“无法读取未定义的属性‘nota’。”
const arrayN = [
{nome: "Rapha", nota: 10},
{nome: "Renan", nota: 8},
{nome: "Stefani", nota: 12}
];
function maiorNota(alunos) {
// Encontrando a maior nota no vetor turma.
let maior = [];
for (let i = 0; i < alunos.length; i++) {
if (alunos[i].nota > alunos[i+1].nota || alunos[i].nota > maior) {
maior = alunos[i];
}
} return maior;
}
const melhor = maiorNota(arrayN)
console.log(melhor)
最佳答案
所以这个错误有点误导,但是当您与索引+1进行比较时应该注意,因为您可能尝试访问不存在的元素.
例如,在Java中,这会抛出一个索引越界异常,其内容超出了“无法读取未定义的属性‘nota’”。
如果您想与下一个元素进行比较,那么一种解决方案是更新 for 循环中的条件,并且不要运行到数组的末尾,而是运行到数组的 end-1。
在最后一个迭代步骤中,您将 i 处的元素与位置 i+1 处的元素进行比较。
const arrayN = [{
nome: "Rapha",
nota: 10
},
{
nome: "Renan",
nota: 8
},
{
nome: "Stefani",
nota: 12
}
];
function maiorNota(alunos) {
// Encontrando a maior nota no vetor turma.
let maior = [];
for (let i = 0; i < alunos.length - 1; i++) {
if (alunos[i].nota > alunos[i + 1].nota || alunos[i].nota > maior) {
maior = alunos[i];
}
}
return maior;
}
const melhor = maiorNota(arrayN)
console.log(melhor)
关于javascript - 错误 : Cannot read the property 'nota' of undefined.(Javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65540063/
我正在尝试使用数据源填充报告,但遇到此异常: Exception in thread "main" net.sf.jasperreports.engine.JRException: Error ret
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
你能帮我解决这个错误吗:“无法读取未定义的属性‘nota’。” const arrayN = [ {nome: "Rapha", nota: 10}, {nome: "Renan",
你能帮我解决这个错误吗:“无法读取未定义的属性‘nota’。” const arrayN = [ {nome: "Rapha", nota: 10}, {nome: "Renan",
我是一名优秀的程序员,十分优秀!