📜  jquery 函数返回 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:18.458000             🧑  作者: Mango

代码示例2
function add(a, b) {
  return a + b; //Return stops the execution of this function
}

var sum = add(5, 24); //The value that was returned got but inside the variable sum