Rohan Ramani

Rohan Ramani

  • NA
  • 786
  • 138.9k

How to delete property from object in Typescript?

Jun 23 2020 12:53 AM
Hi,
I have a object 
  1. var person = {  
  2.     name: "Ramesh",  
  3.     age: 26,  
  4.     gender: "Male"  
  5. };
I want to remove property age from the person.
 
How I can do in typescript?

Answers (1)