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