Hello, I've been trying to convert the price integer to a decimal number. For example: 900 should become 9,00 or 950 should become 9,50.
I have tried various methods that I found on this platform, but it always displays as 900 or 900,00 instead of 9,00 like I desire.
Here is my code:
<ul>
<li><img src={{product.picture}} /></li>
<li class="padding font">{{product.title}}</li>
<li class="padding">{{product.price| number :'2.0-2'}} €</li>
</ul>
Right here -> {{...|number : ''}}
<mock.ts>
export const PRODUCTS: IProduct[] = [
{
id: 1,
category: "pizza",
title: "Pizza Chicken",
description:
"Base crème fraîche, mozzarella, poulet fumé et pommes de terre.",
price: 900,
picture: "assets/img/pizza-chicken.png",
includedIngredients: [
{
.......
I am aiming to format the number as a decimal like this: 9,50