Top "Call" questions

Do not use this ambiguous tag.

Passing an array as a function parameter in JavaScript

I'd like to call a function using an array as parameters: const x = ['p0', 'p1', 'p2']; call_…

javascript arrays function call
When is the finalize() method called in Java?

I need to know when the finalize() method is called in the JVM. I created a test class which writes …

java methods garbage-collection call finalize
How to call a function within class?

I have this code which calculates the distance between two coordinates. The two functions are both within the same class. …

python class function call
Submit form on pressing Enter with AngularJS

In this particular case, what options do I have to make these inputs call a function when I press Enter? // …

function angularjs call keypress enter
How to make method call another one in classes?

Now I have two classes allmethods.cs and caller.cs. I have some methods in class allmethods.cs. I want …

c# methods call
Calling a function within a Class method?

I have been trying to figure out how to go about doing this but I am not quite sure how. …

php function class methods call
Call a Class From another class

I want to call class2 from class1 but class2 doesn't have a main function to refer to like Class2.main(…

java class selenium selenium-webdriver call
Calling a Sub in VBA

This my simplified script: Sub SomeOtherSub(Stattyp As String) 'Daty and the other variables are defined here CatSubProduktAreakum(Stattyp, Daty + …

vba syntax-error call
Getting output of system() calls in Ruby

If I call a command using Kernel#system in Ruby, how do I get its output? system("ls")

ruby system call
Call a Subroutine from a different Module in VBA

Is it possible to call a function from one Module to another? I have the following code: Sub MAIN() Call …

vba module call