I am creating an app that totals a grocery bill. I have successfully been able to total it, but am not able to format it with the $. I am doing everything in my server code. I am using the numeralJS dependency. I do not know how to insert the var string = numeral(1000).format('$0,0.00');) into my re...