A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

811
votes
14answers
149k views

JavaScript: var functionName = function() {} vs function functionName() {}

I've recently started maintaining someone else's JavaScript code. I'm fixing bugs, adding features and also trying to tidy up the code and make it more consistent. The previous developer uses two ...
483
votes
4answers
93k views

What is the difference between call and apply?

What is the difference between using call and apply to invoke a function? var func = function(){ alert('hello!'); }; func.apply(); vs func.call(); Are there performance differences between ...
278
votes
3answers
146k views

Set a default parameter value for a JavaScript function [duplicate]

Possible Duplicate: Is there a better way to do optional function parameters in Javascript? I would like a JavaScript function to have optional arguments which I set a default on, which gets ...
209
votes
4answers
15k views

What does the exclamation mark do before the function?

!function () {}();
188
votes
12answers
40k views

Is there a better way to do optional function parameters in Javascript?

I've always handled optional parameters in Javascript like this: function myFunc(requiredArg, optionalArg){ optionalArg = optionalArg || 'defaultValue'; //do stuff } Is there a better way to ...
186
votes
12answers
7k views

How and why does 'a'['toUpperCase']() in JavaScript work?

JavaScript keeps surprising me and this is another instance. I just came across some code which I did not understood at first. So I debugged it and came to this finding: alert('a'['toUpperCase']()); ...
177
votes
18answers
75k views

What is the difference between a method and a function

I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons. I am having trouble getting my head ...
164
votes
3answers
5k views

What do the parentheses around a function name mean?

In one of my project source files, I found this C function definition: int (foo) (int *bar) { return foo (bar); } Note: there is no asterisk next to foo, so it's not a function pointer. Or is ...
163
votes
4answers
14k views

What is the difference between a 'closure' and a 'lambda'?

Could someone explain? I understand the basic concepts behind them but I often see them used interchangeably and I get confused. And now that we're here, how do they differ from a regular function?
145
votes
4answers
98k views

How do you pass a function as a parameter in C?

I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
118
votes
5answers
38k views

Why was the arguments.callee.caller property deprecated in JavaScript?

Why was the arguments.callee.caller property deprecated in JavaScript? It was added and then deprecated in JavaScript, but it was omitted altogether by ECMAScript. Some browser (Mozilla, IE) have ...
109
votes
8answers
16k views

Simplest/Cleanest way to implement singleton in JavaScript?

What is the simplest/cleanest way to implement singleton pattern in JavaScript?
106
votes
12answers
4k views

Arguments or parameters? [duplicate]

I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world. What's the correct convention for their use?
106
votes
6answers
126k views

Getting a better understanding of callback functions in JavaScript

I understand passing in a function to another function as a callback and having it execute, but I'm not understanding the best implementation to do that. I'm looking for a very basic example, like ...
104
votes
10answers
3k views

Why are the built in functions in PHP named so randomly? [closed]

It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some. Why is this the case? EDIT - this wasn't meant as a "troll" type ...
93
votes
3answers
48k views

How to get the function name as string in Python?

In Python, how do I get the function name as a string without calling the function? def my_function(): pass print get_function_name_as_string(my_function) # my_function is not in quotes should ...
91
votes
12answers
61k views

JQuery pass more parameters into callback

Is there a way to pass more data into a callback function in Jquery? I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
84
votes
26answers
11k views

Should functions return null or an empty object?

What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other? Consider this: public UserEntity ...
83
votes
12answers
51k views

How to turn a String into a javascript function call?

I got a string like: settings.functionName + '(' + t.parentNode.id + ')'; that I want to translate into a function call like so: clickedOnItem(IdofParent); This of course will have to be done in ...
78
votes
12answers
22k views

What is the naming convention in Python for variable and function names?

Coming from a C# background the naming convention for variables and method names are usually either CamelCase or Pascal Case: // C# example string thisIsMyVariable = "a" public void ThisIsMyMethod() ...
74
votes
10answers
16k views

Javascript curry - what are the practical applications?

I don't think I've grokked currying yet. I understand what it does, and how to do it. I just can't think of a situation I would use it. Where are you using currying in javascript (or where are the ...
72
votes
3answers
2k views

“strlen(s1) - strlen(s2)” is never less than zero

I am currently writing a C program that requires frequent comparisons of string lengths so I wrote the following helper function: int strlonger(char *s1, char *s2) { return strlen(s1) - ...
71
votes
27answers
5k views

How to explain callbacks in plain english? How are they different from calling one function from another function?

How to explain callbacks in plain English? How are they different from calling one function from another function taking some context from the calling function? How can their power be explained to a ...
69
votes
3answers
9k views

Why are Perl 5's function prototypes bad?

In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one." Can anyone elaborate on why this might ...
63
votes
7answers
92k views

strdup() - what does it do in C?

What is the purpose of the strdup() function in C?
61
votes
4answers
3k views

Why is the size of a function in C always 1 byte?

When we check the size of a function using sizeof(), we always get 1 byte. What does this 1 byte signify?
61
votes
1answer
26k views

“Parameter” vs “Argument” [duplicate]

Possible Duplicate: Arguments or parameters? I got "Parameter" and "Argument" kind of mixed up and did not really pay attention to when to use one and when to use the other. Can you please ...
60
votes
14answers
7k views

Should I use an exception specifier in C++?

In C++, you can specify that a function may or may not throw an exception by using an exception specifier. For example: void foo() throw(); // guaranteed not to throw an exception void bar() ...
58
votes
13answers
49k views

How to Truncate a string in PHP to the word closest to a certain number of characters?

I have a code snippet written in PHP that pulls a block of text from a database and sends it out to a widget on a webpage. The original block of text can be a lengthy article or a short sentence or ...
57
votes
9answers
29k views

How to return a string value from a bash function

I'd like to return a string from a bash function. I'll write the example in java to show what I'd like to do: public String getSomeString() { return "tadaa"; } String variable = getSomeString(); ...
54
votes
3answers
29k views

Passing a dictionary to a function in python as keyword parameters

I'd like to call a function in python using a dictionary. Here is some code: d = dict(param='test') def f(param): print param f(d) This prints {'param': 'test'} but I'd like it to just print ...
53
votes
5answers
14k views

`new function()` with lower case “f” in JavaScript

My colleague has been using "new function()" with a lower case "f" to define new objects in JavaScript. It seems to work well in all major browsers and it also seems to be fairly effective at hiding ...
52
votes
6answers
21k views

JavaScript variable number of arguments to function

Is there a way to allow "unlimited" vars for a function in JavaScript? Example: load(var1, var2, var3, var4, var5, etc...) load(var1)
51
votes
6answers
14k views

JavaScript function aliasing doesn't seem to work

I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I couldn't seem to get it to work in either Firefox 3 or 3.5beta4, or Google Chrome, ...
48
votes
5answers
19k views

how to get function name inside a function in PHP?

Is it possible? function test() { echo "function name is test"; }
47
votes
3answers
51k views

How can I pass a reference to a function, with parameters? [duplicate]

Possible Duplicate: How can I pre-set arguments in JavaScript function call? (Partial Function Application) I need to able to pass a reference to a function with a given set of parameters. ...
46
votes
9answers
70k views

What is a “static” function?

The question was about plain "C" functions, not "C++" static methods, as clarified in comments. Ok, I understand what a static variable is, but what is a "static" function? And why is it that if I ...
46
votes
16answers
5k views

Is there any way a C/C++ program can crash before main()?

Is there any way a program can crash before main()?
46
votes
6answers
27k views

Jump to function definition in vim

How can i jump to to a function definition using VIM? For example with Visual Assist i can type ALT+g under a function and it opens a context menu listing the files with definitions. How can i do ...
46
votes
5answers
22k views

jQuery Plugin: Adding Callback functionality

I'm trying to give my plugin callback functionality, and I'd like for it to operate in a somewhat traditional way: myPlugin({options}, function() { /* code to execute */ }); or ...
45
votes
5answers
69k views

Call a function with argument list in python

I'm trying to call a function inside another function in python, but can't find the right syntax. What I want to do is something like this: def wrapper(func, args): func(args) def func1(x): ...
45
votes
3answers
19k views

Is it possible to define more than one function per file in MATLAB?

When I was studying for my undergraduate degree in EE, MATLAB required each function to be defined in its own file, even if it was a one-liner. I'm studying for a graduate degree now, and I have to ...
45
votes
2answers
2k views

How do I inherit javascript functions ?

// Don't break the function prototype. // pd - https://github.com/Raynos/pd var proto = Object.create(Function.prototype, pd({ "prop": 42 })); var f = function() { return "is a function"; }; ...
43
votes
11answers
2k views

What is the point of function pointers?

I have trouble seeing the utility of function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a function ...
42
votes
11answers
89k views

How can I return multiple values from a function in C#?

I read the C++ version of this question but didn't really understand it. Can someone please explain clearly if it can be done and how?
42
votes
8answers
186k views

Array functions in jQuery

I am using jQuery in my web application. I want to use arrays, but I am not able to find out functions for arrays (add, remove or append elements in array) in jQuery. Is there any link related to ...
41
votes
8answers
15k views

Python function attributes - uses and abuses

Not many are aware of this feature, but Python's functions (and methods) can have attributes. Behold: >>> def foo(x): ... pass ... >>> foo.score = 10 >>> dir(foo) ...
40
votes
4answers
23k views

Python: Can a variable number of arguments be passed to a function?

In a similar way to using varargs in C or C++: fn(a, b) fn(a, b, c, d, ...)
40
votes
11answers
11k views

Functions vs Stored Procedures

Let's say I have to implement a piece of T-SQL code that must return a table as result. I can implement a table-valued function or else a stored procedure that returns a set of rows. What should I ...
40
votes
8answers
25k views

PHP: Is it possible to return multiple values from a function? [duplicate]

Possible Duplicate: Multiple returns from function I have a function that should return several values. Is this possible, perhaps with an array? If so, how would I reference that array? Do ...

1 2 3 4 5 374