//递归实现:求n个数字的和 n=5—-> 5+4+3+2+1 //函数的声明function getSum(x) { if(x==1){ return 1; } return x+getSum(x-1);}//函数的调用console.log(getSum(5));