最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript create function - Stack Overflow

programmeradmin1浏览0评论

What is the difference between this:

var doSomething=function()
{
    //do blah blah blah...  
}

And this:

function doSomething()
{
    //do blah blah blah...  
}

Another question: In PHP, we create a function by doing this:

function doSomething(a,b)
{
    //do something to variable a and b...
}

In JavaScript, we may have an object before the function:

object.doSomething(a);

My second question is, how would you create a function which requires an object in JavaScript?

What is the difference between this:

var doSomething=function()
{
    //do blah blah blah...  
}

And this:

function doSomething()
{
    //do blah blah blah...  
}

Another question: In PHP, we create a function by doing this:

function doSomething(a,b)
{
    //do something to variable a and b...
}

In JavaScript, we may have an object before the function:

object.doSomething(a);

My second question is, how would you create a function which requires an object in JavaScript?

Share Improve this question edited Feb 16, 2011 at 2:34 Mateen Ulhaq 27.3k21 gold badges119 silver badges152 bronze badges asked Feb 16, 2011 at 2:01 theHacktheHack 2,0149 gold badges27 silver badges34 bronze badges 2
  • difference is that second function is defined at parse-time for a script block, whereas the first function is defined at run-time – Kris Ivanov Commented Feb 16, 2011 at 2:11
  • possible duplicate of var functionName = function() {} vs function functionName() {} – Malachi Commented Jul 13, 2015 at 19:53
Add a ment  | 

4 Answers 4

Reset to default 6

The number one Google result for "function statement vs expression javascript" is another Stack Overflow question:

What is the difference between a function expression vs declaration in JavaScript?

It references the following article, which is the definitive reference on the subject:

http://kangax.github./nfe/

The difference between var fun = function() {} and function fun() {} is that in the first case it is stored in the variable fun. To call the function, you have to call fun(). Having it in a variable lets you pass the function around.

You can create objects by using functions

function MyClass() {
    this.fun = function() { alert('Hello world'); }
}

var obj = new MyClass();
obj.fun();

or JSON

var obj = {
   fun: function() { alert('Hello world'); }
};

obj.fun();

You can further extend the objects or their prototypes with new functions.

Edit. Sorry for the wrong answer: one shouldn't try to do these kinds of things at 4 am.

One question at a time.

To answer your first question, there is not a huge difference.

function doSomething() {} 

is technically equivalent to:

var doSomething;
doSomething = function() {};

technically what happens in this case is the variable declaration gets hoisted to the top of your script.

For the second part of the question, we just do something like

object.doSomething = function(a) { ... }

which is one reason the function literal is so useful.

发布评论

评论列表(0)

  1. 暂无评论