A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.
809
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 ...
209
votes
4answers
15k views
25
votes
10answers
7k views
Sizeof an array in the C programming language?
why isn't the size of an array sent as a parameter the same as within main?
#include <stdio.h>
void PrintSize(int p_someArray[10]);
int main () {
int myArray[10];
printf("%d\n", ...
63
votes
7answers
92k views
481
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 ...
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 ...
10
votes
22answers
3k views
PHP syntax for dereferencing function result
In every other programming language I use on a regular basis, it is simple to operate on the return value of a function without declaring a new variable to hold the function result.
In PHP, however, ...
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 ...
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 ...
22
votes
3answers
1k views
Are “(function ( ) { } ) ( )” and “(function ( ) { } ( ) )” functionally equal in JavaScript?
Both of these code blocks below alert foo then bar. The only difference is })() and }()).
Code 1:
(function()
{
bar = 'bar';
alert('foo');
})();
alert(bar);
Code 2:
(function()
{
bar ...
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 ...
38
votes
5answers
21k views
PHP function to generate v4 UUID
So I've been doing some digging around and I've been trying to piece together a function that generates a valid v4 UUID in PHP. This is the closest I've been able to come. My knowledge in hex, ...
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, ...
35
votes
3answers
8k views
Difference between method and function in Scala
i read http://www.naildrivin5.com/scalatour/wiki_pages/ScalaFunctions. In that post
he specified Methods and functions are not the same thing. But he didn't explain anything
about it. can anyone ...
108
votes
8answers
16k views
Simplest/Cleanest way to implement singleton in JavaScript?
What is the simplest/cleanest way to implement singleton pattern in JavaScript?
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 ...
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 ...
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 ...
13
votes
6answers
9k views
C function syntax, parameter types declared after parameter list
I'm relatively new to C. I've come across a form of function syntax I've never seen before, where the parameter types are defined after that parameter list. Can someone explain to me how it is ...
52
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 ...
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 ...
39
votes
4answers
7k views
What is the difference between a language construct and a “built-in” function in PHP?
I know that include, isset, require, print, echo, and some others are not functions but language constructs.
Some of these language constructs need parentheses, others don't.
require 'file.php';
...
23
votes
5answers
24k views
PHP echo vs PHP short tags
Are they equal in safeness? I was informed that using
<?=$function_here?>
was less safe, and that it slows down page load times.
I am strictly biased to using echo.
What are the ...
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?
59
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() ...
20
votes
2answers
5k views
Function with same name but different signature in derived class
I have a function with the same name, but with different signature in a base and derived classes. When I am trying to use the base class's function in another class that inherits from the derived, I ...
7
votes
9answers
14k views
Must declare function prototype in C?
I am kind of new to C (I have prior Java, C#, and some C++ experience). In C, is it necessary to declare a function prototype or can the code compile without it? Is it good programming practice to do ...
22
votes
9answers
4k views
C++ overload resolution
Given the following example, why do I have to explicitly use the statement b->A::DoSomething() rather than just b->DoSomething()?
Shouldn't the compiler's overload resolution figure out which ...
3
votes
5answers
20k views
How to get JavaScript function data into a PHP variable
I am using PHP and JavaScript. My JavaScript code contains a function, get_data():
function get_Data(){
var name;
var job;
.....
return buffer;
}
Now I have PHP code with the ...
28
votes
3answers
14k views
Is the return type part of the function signature?
In C++, is the return type considered part of the function signature? and no overloading is allowed with just return type modified.
25
votes
8answers
17k views
Override a function call in C
I want to override certain function calls to various APIs for the sake of logging the calls, but I also might want to manipulate data before it is sent to the actual function.
For example, say I use ...
15
votes
17answers
12k views
Overload a C++ function according to the return value
We all know that you can overload a function according to the parameters:
int mul(int i, int j) { return i*j; }
std::string mul(char c, int n) { return std::string(n, c); }
Can you overload a ...
21
votes
4answers
12k views
Error: could not find function … in R
I am using R and tried some.function but I got this error message :
Error: could not find function `some.function`
This question comes up very regularly. When you get the error: could not find ...
24
votes
11answers
51k views
Calling a JavaScript function returned from an Ajax response
I have a system where I send an Ajax command, which returns a script block with a function in it. After this data is correctly inserted in the DIV, I want to be able to call this function to preform ...
18
votes
6answers
15k views
raise error within MySql function
I've created a MySql function and would like to raise an error if the values passed for the parameters are invalid. What are my options for raising an error within a MySql function?
Thanks,
Don
278
votes
3answers
145k 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 ...
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 ...
30
votes
4answers
4k views
How to use R's ellipsis feature when writing your own function?
The R language has a nifty feature for defining functions that can take a variable number of arguments. For example, the function data.frame takes any number of arguments, and each argument becomes ...
29
votes
6answers
6k views
Why can I use a function before it's defined in Javascript?
This code always works, and across browsers:
function fooCheck() {
alert(internalFoo());
return internalFoo();
function internalFoo() { return true; }
}
fooCheck();
I could not find a ...
13
votes
6answers
15k views
How do you pass a member function pointer?
I am trying to pass a member function within a class to a function that takes a member function class pointer. The problem I am having is that I am not sure how to properly do this within the class ...
18
votes
10answers
15k views
What is a RECURSIVE Function in PHP?
Can anyone please explain a recursive function to me in PHP (without using Fibonacci) in layman language and using examples? i was looking at an example but the Fibonacci totally lost me!
Thank you ...
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
97k 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?
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 ...
8
votes
2answers
2k views
Recursive function to generate multidimensional array from database result
I'm looking to write a function that takes an array of pages/categories (from a flat database result) and generates an array of nested page/category items based on the parent ids. I would like to do ...
3
votes
6answers
429 views
What is really happening in this code?
I have a code which includes a recursive function. I have wasted a lot of time on recursion but I still couldn't get it really:
#include<stdio.h>
void count(int);
int main()
{
int x=10,z;
...
2
votes
7answers
2k views
Javascript and PHP functions
Is it possible to call a function from PHP using onsubmit from javascript? If so could someone give me an example of how it would be done?
function addOrder()
{
$con = ...
38
votes
3answers
47k views
jquery .click pass parameters to user function
I am trying to call a function with parameters using jquery .click, but I can't get it to work.
This is how I want it to work:
$('.leadtoscore').click(add_event('shot'));
which calls
function ...
16
votes
7answers
52k views
c++ return array in a function
I have an array int arr[5] that is passed to a function fillarr(int arr[]):
int fillarr(int arr[])
{
for(...);
return arr;
}
How can I return that array?
How will I use it, say I returned ...
33
votes
9answers
7k views
Why C# is not allowing non-member functions like C++ [closed]
C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports ...

