Summary of js pitfalls written test questions (continuously updated)

Source: Internet
Author: User

Summary of js pitfalls written test questions (continuously updated)

Ask your interviewer down. You are a qualified interviewer. The following are some mistakes-prone js test questions which will be continuously updated.

1. Evaluate the knowledge of this

 

Var length = 10 function fn () {alert (this. length)} var obj = {length: 5, method: function (fn) {fn ()//? Arguments [0] () //? } Obj. method (fn)

The pitfall here is mainly arguments. We know that except for the vertex operator, the object can be enclosed in brackets. Here, the scope of fn is arguments, that is, this = arguments in fn, only one fn parameter is passed during the call, so the length is 1.

 

2. Evaluate the understanding of pre-compilation and var

 

Var a = 1; function B () {a = 10; return; function a () {}} B (); alert ();


 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.