JavaScript
JavaScript 函数
在您仅仅希望退出函数时 ,也可使用 return 语句。返回值是可选的
源代码:
点击运行 »
function myFunction(a, b) { if (a > b) { return; } x = a + b }
运行结果:
点击运行 »