1. function go(){
    2. if(arguments.length ==1){
    3. console.log(arguments[0])
    4. }else if(arguments.length ==2){
    5. console.log(arguments[0]);
    6. console.log(arguments[0] + arguments[1])
    7. }
    8. }
    9. go(10,20)