anyuxuan / destructure-array

destructure array

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

手写解构数组方法

例如

const targetArray = [1,[2,4],3];
const formatter = '[a,[b],c]';
function destructuringArray(targetArray, formatter) {
  // some code
}
// 调用
const result = destructuringArray(targetArray,formatter);
// 结果result: { a: 1, b: 2, c: 3 }

About

destructure array


Languages

Language:JavaScript 100.0%