作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须为这个问题的简单性道歉。从字面上看,我正在尝试学习第 2 章 javascript,只是为即将到来的事情做好准备。
我的问题具体涉及Chapter 2 of Eloquent Javascript's变量部分。在网站 JS 沙箱中它使用示例:
var luigisDebt = 140;
luigisDebt = luigisDebt - 35;
console.log(luigisDebt);
// → 105
105
没问题!多测试一下:
var luigisDebt = 140;
luigisDebt = luigisDebt - 35;
luigisDebt = luigisDebt - 5
console.log(luigisDebt);
100
但是,如果我像这样乱搞大小写:
var luigisDebt = 140;
luigisDebt = luigisDebt - 35;
luigisDebt = luigisdebt - 5
console.log(luigisDebt);
95
我的输出不正确,为 95,而不是正确的 100。
感谢其他帖子,我了解到 camelCase , constructer functions和 PascalCase 。但仍然无法弄清楚为什么我的输出会随着大小写变化?
最佳答案
luigisdebt
未在您的代码中定义,它应该回答 105。在使用它之前定义它。
关于javascript - 值(value)资本化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45367013/
我必须为这个问题的简单性道歉。从字面上看,我正在尝试学习第 2 章 javascript,只是为即将到来的事情做好准备。 我的问题具体涉及Chapter 2 of Eloquent Javascrip
我是一名优秀的程序员,十分优秀!