From 1df8461fe3c32852e6eaf2a2baaf0812bae88313 Mon Sep 17 00:00:00 2001 From: yck Date: Thu, 18 Mar 2021 09:51:37 +0800 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 62b23bd..5416359 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,27 @@ ### 今日原题 +第九题:[修改嵌套层级很深对象的 key](https://github.com/KieSun/fucking-frontend/issues/14) + +```js +const a = { + a_y: { + a_z: { + y_x: 6 + }, + b_c: 1 + } +} +// { +// ay: { +// az: { +// yx: 6 +// }, +// bc: 1 +// } +// } +``` + 第八题:[对一个很长的名字数组,做分片更新名字请求](https://github.com/KieSun/fucking-frontend/issues/13) ```js