Top "Function" questions

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

How can I create an Asynchronous function in Javascript?

Check out this code : <a href="#" id="link">Link</a> <span>Moving</span&…

javascript jquery function asynchronous
Default argument values in JavaScript functions

Possible Duplicate: How do I make a default value for a parameter to a javascript function in PHP: function func($…

javascript function arguments
List an Array of Strings in alphabetical order

I have a program which has the user inputs a list of names. I have a switch case going to …

java arrays function case
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 …

javascript function callback
How to make a local variable (inside a function) global

Possible Duplicate: Using global variables in a function other than the one that created them I'm using functions so that …

python function global-variables local
Python function as a function argument?

Can a Python function be an argument of another function? Say: def myfunc(anotherfunc, extraArgs): # run anotherfunc and also pass …

python function arguments
JavaScript Adding an ID attribute to another created Element

I have some code here that will do the following. The code creates an element "p" then I append it …

javascript html function dom setattribute
Pass object to javascript function

I have recently been messing around with jQuery on my website, and I have a fairly limited knowledge of Javascript. …

function javascript-objects javascript
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 …

javascript jquery function callback arguments
Check if all values in list are greater than a certain number

my_list1 = [30,34,56] my_list2 = [29,500,43] How to I check if all values in list are >= 30? my_list1 should work and …

python list function max