新舊寫法比對:
var f = (arr, b) => { arr.push('132'); return arr.length; };
var f = function f(arr, b) { arr.push('132'); return arr.length; };