📜  填写函数 incrementer 的代码,使其返回全局变量 fixedValue 的值加一. - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:14.008000             🧑  作者: Mango

代码示例1
var fixedValue = 4

function incrementer() {
  return fixedValue + 1
}