About 27,900,000 results
Open links in new tab
  1. JavaScript error: "is not a function" - Stack Overflow

    It was attempted to call a value like a function, but the value is not actually a function. Some code expects you to provide a function, but that didn't happen.

  2. How can I use an array of function pointers? - Stack Overflow

    How should I use array of function pointers in C? How can I initialize them?

  3. How do I define a function with optional arguments?

    466 I have a Python function which takes several arguments. Some of these arguments could be omitted in some scenarios.

  4. What is the naming convention in Python for variables and …

    See Python PEP 8: Function and Variable Names: Function names should be lowercase, with words separated by underscores as necessary to improve readability. Variable names follow …

  5. JavaScript: Passing parameters to a callback function

    In the snippet above, the setTimeout function takes 2 arguments, the callback function and a minimum time in ms for the function to be called, so when passing the callback function we're …

  6. How to return a result from a VBA function - Stack Overflow

    When called within VBA the function will return a range object, but when called from a worksheet it will return just the value, so set test = Range("A1") is exactly equivalent to test = …

  7. What is the C++ function to raise a number to a power?

    That standard library function pow has several drawbacks: relatively slow not compatible with physical quantities libraries like mp-units not exact not very readable not adapted to integers. …

  8. How can I solve the error LNK2019: unresolved external symbol

    I get this error, but I don't know how to fix it. I'm using Visual Studio 2013. I made the solution name MyProjectTest This is the structure of my test solution: -function.h #ifndef …

  9. javascript - What is 'Currying'? - Stack Overflow

    In a functional language, you could pass in the mass of the earth to the function and then partially evaluate it. What you'd get back is another function that takes only two arguments and …

  10. How can I return two values from a function in Python?

    32 I would like to return two values from a function in two separate variables. What would you expect it to look like on the calling end? You can't write a = select_choice(); b = …