I have the following routine in a script tag.
for (var i = 0, j = message.Transactions.length; i < j; i++) { var m = message.Transactions[i]; //m.Amount Needs to be Currency IndexViewManager.displayList.push(m); } There's an element in "m" that is numeric and I want it to be displayed as currency. KnockoutJS is being utilized to data-bind the elements if that helps.