addOne接受一个数字作为参数// //返回该数字+1?

时间:2018-06-30 12:14:13

标签: javascript

函数addOne返回不确定的结果...

const t = 5;
const b = 8;
function addOne () {
add (t + b);
return addOne;}

此功能有助于获得5 + 8的总和。

2 个答案:

答案 0 :(得分:0)

const t = 5;
const b = 8;
function addOne () {
  return t+b;
}
console.log(addOne()); //13

答案 1 :(得分:0)

我不确定您要问的是什么,因为您的方法名称与您的实现不匹配。但是以下一些代码可能会对您有所帮助:

const t = 5;
const s = 8; // Note that I have renamed the parameter's name
function addOne () {
    return s + 1;
}
function addOneToParameter(x) {
    return x + 1;
}
function addTwoConstants () {
    return t + s;
}
function addTwoParameters (a, b) {
    return a + b;
}
console.log(addOne()); // 9 (The constant 's' + 1)
console.log(addTwoConstants()); // 13 (The constant 's' + constant 't')
console.log(addTwoParameters(1,2)); // 3 (The first parameter + the second parameter)
console.log(addOneToParameter(4)); // 5 (The parameter + 1)

在您最初的问题中,您不需要使用函数来执行两个整数的加法运算。换句话说,只需将“ +”用作操作数。此外,请注意如何从函数中返回值。