culTest

    One of the 25 questions in this topic

    How much do you know about Comprehensive Certification: From Design to Deployment?

    In TypeScript, what does the 'Partial<T>' type do?

    Answers

    It makes the code work half-way.
    Makes all properties of a type T optional.Correct
    Delete half of the data.
    Creates a partial copy of the database.

    Very useful for update functions where you do not need to send all the properties of the object.