Thank you Sir! That's exactly what I needed
B
bruno-py
@bruno-py
0
Reputation
2
Posts
292
Profile views
0
Followers
0
Following
Posts made by bruno-py
-
RE: pass function as argument to another function
-
pass function as argument to another function
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