Tagged Questions

4
votes
1answer
92 views

How do I invoke this function with JavaScript?

I am just working with basic level of javascripts. Today I found the below and for scrolling down DIV layer when new data adds to DIV. I couldn't understand how to Call the function. Is it to be used ...
3
votes
1answer
189 views

Why this kind of function invocation is wrong in JavaScript?

I'd like to create an anonymous function and then invoke it immediately. 1) This will bring a syntax error. Why? function () { alert("hello"); }(); 2) wrap the function definition with () and ...
2
votes
1answer
139 views

Calling a Scheme function using its name from a list

Is it possible to call a Scheme function using only the function name that is available say as a string in a list? Example (define (somefunc x y) (+ (* 2 (expt x 2)) (* 3 y) 1)) (define ...
2
votes
6answers
741 views

Simple JavaScript function with immediate invocation does not work… why?

Can anybody explain why this works: var sayHello = function (name) { alert("Hello there " + name + "!"); }("Mike"); While this does not: function sayHello (name) { alert("Hello there " + ...