function compare(x,y){ if(x<y) { return y; break;//break加入后代表什么意思,可以这样加吗? } else if(x>=y) { return x; break;//同上个注释 } }
return 后面的就不执行了,不用写了,