#21: TypeScript Interface - Defining Contracts for Objects & Classes 📝

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ต.ค. 2024

ความคิดเห็น • 18

  • @ThapaTechnical
    @ThapaTechnical  ปีที่แล้ว +3

    🔗 Download Source Code & Homework: thapatechnical.shop/courses/typescript-crash-course

  • @ayush_code9849
    @ayush_code9849 ปีที่แล้ว +1

    Best series of Typescript on TH-cam

  • @Jk-it8cl
    @Jk-it8cl 8 หลายเดือนก่อน +1

    Namikaze Minatoo❤‍🔥❤‍🔥🔥

  • @trashfiles3432
    @trashfiles3432 ปีที่แล้ว

    Sir Dil se aap ko thanks 😍
    Every thing mush know about TS is here...
    thansx again Sir. 🤗

  • @DemystifyFrontend
    @DemystifyFrontend ปีที่แล้ว +1

    clearing many doubts 😊

  • @priyasharma4988
    @priyasharma4988 ปีที่แล้ว +1

    Vercel m login krne m user block error aa raha h. Ye issue kaise resolve hoga...?

  • @hemantvishwakarma8751
    @hemantvishwakarma8751 5 หลายเดือนก่อน

    // interface => same as type alias => used for specificying the data types of objects (intoduced in newer version of TS)
    // always use ; not ,
    interface personDT {
    name:string;
    age:number;
    city:string;
    }
    const person1:personDT = {
    name:"Hemant",
    age:24,
    city:"Chhatarpur"
    }
    function greet1(person:personDT){
    console.log("Hello, " + person.name);
    }
    greet1(person1);
    //
    interface Product {
    name:string;
    price:number;
    quantity:number;
    }
    const product1:Product = {name:"pencil",price:5,quantity:5}
    function calculateTotalPrice (product:Product):number {
    return product.price * product.quantity;
    }
    console.log(calculateTotalPrice(product1));

  • @RajCreationAA
    @RajCreationAA 5 หลายเดือนก่อน

    It was awesome

  • @MuhammadAdnan2.0
    @MuhammadAdnan2.0 ปีที่แล้ว

    bro how to use interfaces with promise function as an array[] ,,,,,,,

  • @zakidev
    @zakidev ปีที่แล้ว

    interface Product {
    name: string;
    price: number;
    quantity: number;
    }
    const myProduct: Product = {
    name: "Laptop",
    price: 1899,
    quantity: 3
    }
    function calculateTotalPrice(product: Product): number {
    return product.price * product.quantity;
    }

  • @satyam_code
    @satyam_code 2 หลายเดือนก่อน +1

    💙💜

  • @_PRANAYMATE
    @_PRANAYMATE 10 หลายเดือนก่อน

    If u have to use same named variables in several files then just write in your code
    export {}
    Just fine
    Thank bolne ki jarurat nahi 😂hai

  • @ayush_code9849
    @ayush_code9849 ปีที่แล้ว

    🔥

  • @rishiraj2548
    @rishiraj2548 ปีที่แล้ว +1

    🙏👍

  • @nikhild79143
    @nikhild79143 6 หลายเดือนก่อน

    I am yha tk pahuch gya hu girte padte congretesme

  • @Radhe_radhe2929
    @Radhe_radhe2929 ปีที่แล้ว

    ❤❤op😊

  • @abhipathania2772
    @abhipathania2772 10 หลายเดือนก่อน

    For the sake of the study, please do not mention your website or the introduction to a prior video in every video. 😐😐😐😐