Hello please how do i pass an arument to a function in js.
I have a function
function format_date(date){
Moment(date).fromNow();
}
and my ux
<Each Items="{ratings}">
<StackPanel Background="#f0f0f0" Alignment="VerticalCenter" Padding="0,5,0,5">
<Text FontSize="13" Alignment="VerticalCenter" TextAlignment="Center" Value="{format_date(DateUpdated)}"/>
</StackPanel>
<Separator />
<RatingList/>
</Each>
I got an error UX function not found: ‘format_date’