From 4b6c37b7d24470ed0a593342b0c33f4d7625d336 Mon Sep 17 00:00:00 2001 From: xuwu Date: Tue, 30 Mar 2021 07:23:37 +0800 Subject: [PATCH] docs: update readme --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f67eaac..6053e33 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,18 @@ ### 今日原题 -[第十四题:JS 类型](https://github.com/KieSun/fucking-frontend/issues/19) +[第十七题:以下代码输出什么?为什么?](https://github.com/KieSun/fucking-frontend/issues/22) -请问 JS 基本类型和对象类型中各有哪些类型? - -对于这些类型我们如何判断具体的类型。比如数组是对象类型,可以通过 `Array.isArray` 等方法判断是数组。 +```js +var a = 0 +var b = async () => { + a = a + await 10 + console.log('2', a) // -> ? +} +b() +a++ +console.log('1', a) // -> ? +``` ## 前端十五万字面试资料