demo.sjs const arr = [1, 2, 3]; const double = x => x * 2; // output: [2, 4, 6] console.log(arr.map(double)); var obj = { birth: 1970, getAge() { const b ...
確定! 回上一頁