Min's blog

I choose to see the beauties in the world.

导航

front-end interview

Posted on 2017-02-27 15:04  Min77  阅读(54)  评论(0编辑  收藏  举报

1.scope变量范围 

key: var后面连等,只有第一个变量有var  严格模式下则为 undefined

2.给对象添加自定义方法或函数

key: prototype

3.声明提升(Hoisting)

key: 函数和变量声明预解析

4.this指向

key: 一般指向调用对象

定时器中为window, 函数中指window

5.call & apply

key: 矫正this指向