"Learning Notes" JavaScript coding specification-functions

Source: Internet
Author: User

function expression

anonymous function var anonymous = function () {return true;};/ /named function var named = function named () {return true;} Iife functions immediately-invoked function Expression (function () {  console.log (' hello! ');}) ();

Do not declare functions in a function block (if while etc), although the browser allows you to assign a variable to a function, but different browsers may parse differently.

ECMA-262 defines a block as a set of statements, but the function is not a statement.

Goodvar test; if (AAA) {test = function test () {console.log (' hi~~ ');};}

Badif (AAA) {function test () {Console.log ('??? ');}}

Do not name a parameter arguments, otherwise he will take precedence over the arguments object that is passed to each function scope.

Goodfunction aaa (Name,sexual,age) {}//badfunction bbb (name,sexual,arguments) {}


"Learning Notes" JavaScript coding specification-functions

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.