Questions tagged as 'function'

1
answer

why when I put a function as an array value, it returns function syntax and not its value?

var A = [ 'dog', 'cat', function () { return 2 * 2 } ] ; document.body.innerHTML = A[2] Return this: function () {return 2 * 2} Obviously I want you to return 4 , not the syntax of a function Or is it that you can not put a function in an...
asked by 02.01.2019 / 17:58
1
answer

C ++ - Error loading data in a struct array located in a header file

I am very new to c ++ and I am having some problems with a task, the same is detailed below:  I have a struct and a function to load data into it. The program compiles correctly if all the code is in the same main.cpp, but I need it in different...
asked by 02.09.2017 / 23:49