DEV Community

Discussion on: Pure Functions with Typescript

Collapse
 
aminejvm profile image
Amine

Hey sorry I forgot to add as const in the example thank you for noticing it.

const product: Product = {
  title: "Awesome Car",
  quantity: 32,
  price: 2990
} as const ;

product.title = "Awesome Camera"

after adding const assertion we can't edit the title property. Thank you for your feedback ))