Four JavaScript interview questions to test your basic js skills

Source: Internet
Author: User

There are four short JavaScript scripts below. If you can successfully predict the running results of the script, your basic JavaScript skills are still acceptable. If the answer is incorrect, you can add missing knowledge accordingly. It is also very simple. If you get a wrong answer, it means you don't understand it. You will soon understand the information. Click the runcode button to see the answer first.

Question 1
var a = 10;sayHi();function sayHi() {var a = 20;alert(a);}alert(a);

Question 2
var a = 10;sayHi();function sayHi() {a = 20;alert(a);}alert(a);

Question 3
var a = 10;sayHi();function sayHi(){a = a + 10;alert(a);return a;}alert(a);alert(sayHi()+10);

Question 4
var a = 10;sayHi();function sayHi(){var a = a + 10;alert(a);return a;}alert(a);alert(sayHi()+10);

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.