Thank you Sir! That's exactly what I needed
B
bruno-py
@bruno-py
0
Reputation
2
Posts
613
Profile views
0
Followers
0
Following
Posts made by bruno-py
-
RE: pass function as argument to another functionposted in general forum
-
pass function as argument to another functionposted in general forum
How can I pass a function return value as argument to another function?
function worldFn(){ return "world" } function helloFn(a) { return "hello " + a }<div>{{ helloFn worldFn }}</div>returns hello undefined