base::解构对象object, 解构数组 示例 function greet({ name, address: { city, country } }) {} function sum([a, b, c]) { return a + b + c; }