Posts by Anderson Duarte • 43 points
2 posts
-
2
votes1
answer210
viewsQ: Make a parameter change the value of the variable with pointer
It is possible to work with pointers in JS, if yes, how do I do this? In the example below the goal is to make the variable str stay with the value: "worked :D" var str = "teste"; function…
-
0
votes1
answer253
viewsQ: Add parameters dynamically in a Javascript function
You guys, it’s okay? I am trying to create a function (I will call to execute) that takes as parameter another function (I will call word), a list of objects and a list of attributes to be accessed…