函數定義 函數語句定義 function(a,b){ return a+b; } 表達式定義 var add = function(a,b){return a+b}; //函數表達式可
格式: def 函數名(參數): &