240 发简信
IP属地:北京
  • ES6中七个“烎技”

    1-交换变量 通过数组解构完成 let a = 'world', b = 'hello'[a, b] = [b, a]console.log(a...