Thank you Sir! That's exactly what I needed
B
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