作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的代码将允许计数器函数在每次 counter() 时加一;叫做。
function One() {
var counter = function(initial) {
var c = initial || 0;
return function() {
return c++;
};
}(0);
Too(counter);
}
function Too(counterArg) {
counter();
}
有什么东西可以代替 counter();那么计数器会递减吗?或者更好的是我有什么方法可以设置计数器的值吗?比如 counter = 0 或 counter = 20?我还需要远离全局变量。
最佳答案
您可以将函数指定为 JavaScript 中的变量,因此现在您可以执行此操作...
var counter = 0;
var step = 1; // or 20 or whatever
var method = null;
function increment () {
counter += step;
}
function decrement () {
counter -= step;
}
method = icrement;
method();
关于javascript - 计数器功能设定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19456794/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!