as const: the most underrated TypeScript feature

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

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

  • @TechnologicNick
    @TechnologicNick ปีที่แล้ว +105

    You can also use `as const` on individual value literals or use it on template string literals to get all possible strings.

    • @ElektrykFlaaj
      @ElektrykFlaaj ปีที่แล้ว +10

      or on array to get a tuple. For instance typeof (["a", 1] as const) is readonly ["a", 1], while typeof ["a", 1] is (string | number)[]

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

      The template literal trick is mind blowing!

    • @bobthemagicmoose
      @bobthemagicmoose 15 วันที่ผ่านมา

      This can really blow up :) I think typescript is smart about ultimately collapsing a type when it gets too big (something like a few thousand options) "hey, its just a string - don't go crazy now"

  • @irfanfauzi8704
    @irfanfauzi8704 7 หลายเดือนก่อน +6

    It's ridiculous that I can't expect const as constant value. Love your vids

    • @wiktorchojnacki9746
      @wiktorchojnacki9746 7 หลายเดือนก่อน +1

      You can, you just need to know what is constant about your value.

  • @weirdwordcombo
    @weirdwordcombo ปีที่แล้ว +51

    Metadata based programming can be very very powerful. It essentially allows you to expand an application by just adding metadata to an object, while also writing less code overall. I have found that old codebasis often have similar and/or duplicate code all over the place, which can be refactored with this metadata based driven approach. Cuts down on TONS of boilerplate.

  • @leotravel85
    @leotravel85 ปีที่แล้ว +30

    You can also use 'satisfies' with 'as const' to constraint the object typings, like 'as const satisfies Record', its super neat

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

      Damn I needed this so many times and didn't know about it, thanks for sharing.

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

      holy crap I needed this, tysm

  • @DulithMutucumarana
    @DulithMutucumarana ปีที่แล้ว +4

    Awesome! Thanks!
    works on arrays as well:
    const abc = ['a', 'b', 'c'] as const;
    type ABC = typeof abc[number];

  • @goncaloflorencio6529
    @goncaloflorencio6529 ปีที่แล้ว +17

    Thanks a lot for this longer explanation! I sometimes have a harder time catching up on the really short videos but here I was able to get everything immediately.

  • @apina2
    @apina2 ปีที่แล้ว +65

    "const as const"
    sounds really smart and not ridiculous at all

    • @zuma206
      @zuma206 6 หลายเดือนก่อน +8

      It makes perfect sense within the typescript syntax, and it's relationship with javascript syntax

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

    After watching half of the video, I found an immediate use case in my TS project I'm working on. Great video!

  • @blazeogl7097
    @blazeogl7097 3 หลายเดือนก่อน +1

    Thanks man, 3 months ago I started learning expo, and I wanted to make routes, I suffered so much because of that, I was obligated to type routes as any...and now I know how to fix it❤

  • @nadavrot
    @nadavrot ปีที่แล้ว +12

    Excellent video! You often make videos about bleeding edge TS features (that I can’t use yet) or incredibly complex topics (that make me scratch my head) but this video was super accessible and easy to follow! Here’s hoping you will make more mid-level TS concepts videos.

  • @yoni532s9M5w
    @yoni532s9M5w ปีที่แล้ว +2

    That's worthy of a medium article mate. Very nice solution to a very popular recurring problem

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

    YOU are the most underrated TH-camr

  • @ColinRichardson
    @ColinRichardson ปีที่แล้ว +84

    I use this quite often, I don't think it's underrated, I think other things may just be rated too highly... LOL

    • @ColinRichardson
      @ColinRichardson ปีที่แล้ว +4

      PS: Where is the Top hat and Monocle?

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

      ​@@ColinRichardsonPeople do wear two monocles to make a _spectacle_ for themselves, so now he's just missing the top hat, old chap 🎩

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

    I love as const so much. It gives so much information of the code base you're trying to work with. It's makes localization strings global constants so much more useable.

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

      Hey can you expand a little bit on that? Sounds interesting

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

      @@scylk It's very simple. You create an object that basically stores all of your strings and add an handler to dynamically change it based on the users OS language. When you mark those strings as const, TypeScript still sees the values of your default language and it's easier to know what string represents what text.

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

    Just came to say this video finally helped make `as const` click for me. Thanks for the info, Matt!

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

    "Object.values on a type level" trick is pretty neat. Thanks!

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

    You guys are lucky I'm dumb, I asked the question that inspired this video :)
    Thanks for all you do Matt, I learned a whole lot.

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

    Was using an enum for a radio group in Zod and discovered this. Never went through the trouble of understanding it, though. Thanks 👍🏿

  • @ginger-viking
    @ginger-viking ปีที่แล้ว

    I did not know as const prevented the object being changed - thanks!

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

    That's absolutely brilliant! I wasn't super sure what "as const" was doing, thanks for clarifying that!

  • @rizkyagungprasetyo8293
    @rizkyagungprasetyo8293 ปีที่แล้ว +6

    Sometimes I utilize this tool to manage database names, collections, roles, etc., enabling me to infer values instead of strings :).

  • @coldbloodedtenacity
    @coldbloodedtenacity 14 วันที่ผ่านมา

    Godly gift of explanation.

  • @williamlvea
    @williamlvea ปีที่แล้ว +4

    The biggest issue I've had with 'as const' is that it doesn't play well with libraries. Because of the readonly you'll get into cases where libraries are expected something like string[] and will require casting to mask the readonly.
    It also doesn't actually freeze the values, which can cause hard to debug bugs

  •  ปีที่แล้ว

    The best and simplest explanation of "as const"!

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

    Watched small video - huge power acquired. Thank you!

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

    Nice video! Heads up on this format on mobile because there's no TH-cam outro, the "suggested video" card appeared whilst you were still coding and blocked the code in video

  • @Gustavewpm
    @Gustavewpm 7 หลายเดือนก่อน

    Amazing video.
    Such really good pedagogy, loved it, even if I was already very familiar with as const and the other notions sumed up.

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

    That was a whole lot of fantastic stuff that will immediately be used

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

    Thank you sir for this great explanation. I am glad that there are so passionate typescript writers out there like yourself. Just watching this video made me understand the keyof typeof stuff and as const much easier.

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

    This is such a helpful feature. I'll be using this all the time now, thank you

  • @Hadi-gd7ul
    @Hadi-gd7ul ปีที่แล้ว

    This is so beautiful that i want to cry.

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

    Almost as good as 'as any'!

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

    I love your typescript content, thanks

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

    i was in a live stream a few days ago on this,learned so much

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

    Finally... now I understand it. Thank you Matt.

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

    You just saved me wtf. I was looking for a solution like this yesterday

  • @olegsbk3562
    @olegsbk3562 ปีที่แล้ว +2

    What do you prefer “as const” or enum in cases like in video?

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

    Needed this a few months ago 😂 excellent content on this channel dude keep it up

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

    Simply a typescript magician

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

    This channel is also underrated. awesome video! you just got a new subscriber here

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

    Finally something from youtube I will actually use

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

    As someone who doesn't know TS and just knows C#, I recoiled slightly when I saw the keyof typeof [] bit
    But then I remembered reflection is pretty much like that anyways in C#, accessing public (or private) members and the like.

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

      The difference is that reflection happens at runtime. This "as const" typing happens statically at compile time, so it's typesafe -- unlike reflection.
      On the other hand, typescript types are not reified, whereas .net types are. So reflection over typescript types isn't possible, because the type information is erased during compilation.

  • @user-he8qc4mr4i
    @user-he8qc4mr4i ปีที่แล้ว

    Very nice ticks! keep them comming sensei!

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

    Wow great video especially as a new typescript developer, I subscribed

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

    Oh cool! I knew it for array to union, but not for object to union. Thanks!

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

    Amazing! I needed this earlier today!

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

    Niiiiice ! I always forget how to target the type of keys and values of objects 😅

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

    So if you want as const but you don't want the whole tamale const you can define the internal object first as standard mutable object, and then put it inside in the outer const object.
    I.e. if you have
    const deep = {
    whatever: "/deep/whatever",
    };
    const routes = {
    admin: "/admin",
    home: "/",
    deep: deep,
    } as const;
    then routes will be inferred as of type:
    {
    readonly admin: "/admin";
    readonly home: "/";
    readonly deep: {
    whatever: string;
    };
    }

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

    Really great.
    You are a great teacher 😊
    Thx from France.

  • @baka_baca
    @baka_baca 4 หลายเดือนก่อน

    I don't get to just use typescript at work, but I sure as hell use jsdoc to the fullest in the meantime and love getting to do similar things with types. When you know for sure that you'll get auto completion and type errors, it's amazing how much less code you can end up writing. I recently set types up in such a way that I could safely turn 1000+ lines of manual references to properties on an object into just a few lines of code that auto updates, types and all.

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

    Would you consider making a video/talk about the 'declare' keyword. While lurking into various .d.ts files I can spot all possible combinations of 'declare class', 'declare abstract class' (also: 'abstract class' alone). I have only used declare in typescript playground to mimic the existence of a function to make my types go trhough, but I can't get my head wrapped around real-life usage and how it is different from interfaces. Thanks!

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

    Nice. Theo made a similar video of why Enums are bad. He did something similar like this object as const, but his was a string array as const. And the type Route = typeof routeArray[number]. So the difference is whether or not you want a key name associated with the routes

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

    Thank you very much Mr Matt!

  • @MdAdil-hl8uv
    @MdAdil-hl8uv 3 หลายเดือนก่อน

    type Values = T[keyof T];
    const routes = {
    home: '/',
    admin: '/admin',
    users: '/users'
    } as const;
    type Route = Values; // Route = "/" | "/admin" | "/users"

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

    I first got interested in Typescript just because I thought I'd get type-checking... and weak typing was the 1990's biggest mistake. All of this auto-completion stuff in VSCode came along later as just a delightful extra little gift.

  • @omkarbhale442
    @omkarbhale442 ปีที่แล้ว +5

    Why didnt you use enums for the routes? It looks like you only need one of the three routes at any moment. This particular example doesn't show use of as const i think. (I'm new to typescript so maybe I'm wrong, please correct me)

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

      Right, why prefer the code in the video in place of a string enum? String enums are made for this, and they generate faster and generally smaller JS output.
      const enum Routes {
      Home = "/",
      Admin = "/admin",
      Users = "/users",
      }

    • @programming5274
      @programming5274 ปีที่แล้ว +2

      /* String enum */
      const enum Routes {
      Home = "/",
      Admin = "/admin",
      Users = "/users",
      }
      const goToRoute = (route: Routes) => {
      console.log(route);
      }
      goToRoute(Routes.Home);
      console.log("----------------------");
      /* as const */
      const rts = {
      home: "/",
      admin: "/admin",
      user: "/users",
      } as const;
      type Rte = (typeof rts)[keyof typeof rts];
      const goToRt = (route: Rte) => {
      console.log(route);
      }
      goToRt(rts.home);

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

      @@programming5274 Yes!

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

      Because Matt has a hate boner for them and prefers magic variables. Sharing a codebase with him can be only the first step of hell.

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

      @@programming5274 I totally agree yet I supose it is just to show that we have that option too. Imho u end with objects from other devs everytime so maybe u can just put 'as const' on them instead of refactoring to enums other people's job, idk

  • @sergey_llal6897
    @sergey_llal6897 ปีที่แล้ว +2

    Can we use enum for store routes and avoid create additional types?

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

    Awesome explanation, thank you!
    Do you know if TS typesystem is Turing complete? Like the programming you can do at the type level like that? I bet it is.

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

    const obj = {
    username: 'abc',
    password: 'dce',
    email: 'fgh',
    } as const;
    let a: (typeof obj)[keyof typeof obj]; // Value of an object
    let b: Exclude; // Exclude a value from an object
    let c: keyof typeof obj; // Keys of an object
    let d: Exclude; // Exclude a key from an object

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

    I may have agreed, but even better is the new const in generics feature.

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

    Nice quick dive into using "as const" with objects! I know it's a useful TypeScript feature when I find myself using it intuitively as I'm coding.

  • @mbenlahrech
    @mbenlahrech 11 หลายเดือนก่อน

    Now using rust and coming from c this is really funny to me how JS devs (i am a 4 years js/ts dev) go nuts with typing systems

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

    Amazing so concise and clean.

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

    Would an enum work the same?

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

      It would, but Matt has an irrational hatred for them, as seen in one of his videos "Why you shouldn't use Enums". Watch him abuse the concept of Enums and instead using magic variables. Biggest tool I've seen in TS.

  • @Leon-xg7zj
    @Leon-xg7zj ปีที่แล้ว

    Awesome sharing!

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

    I now understand Rich Harris. We are packing up and moving to Jsdoc

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

    Great video, typescript is beautiful

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

    As const is really cool. Didn't know we could do that. Is there not an easier way to get values of an object as a union? Like we have keys of us there not values of

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

    Videos are very useful and clear, thanks

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

    What linter is "I noticed that routes has been declared, but it's never used in the code." a part of? It sounds much closer to natural language than usual error messages do.

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

      It's the TypeScript error translator I built:
      marketplace.visualstudio.com/items?itemName=mattpocock.ts-error-translator

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

      @@mattpocockuk Oh neat

  • @Alec.Vision
    @Alec.Vision ปีที่แล้ว

    The thing about 'as const', when not used on type parameters, is that it lies. The runtime object is, in fact, not readonly. You can get the same effect, with added runtime correctness, from Object.freeze. I consider this an extension of the 'One Source of Truth' ethos. 'as const' is, essentially, a type assertion.
    But I'm %100 guilty of using it everywhere so 🤷

  • @moneyfr
    @moneyfr ปีที่แล้ว +4

    You didn't talk about: "as const satisfies Record "

    • @onça_pintuda999
      @onça_pintuda999 ปีที่แล้ว +2

      I started using a lot of "as const satisfies typeX", I'm creating a lib and it's helping me a lot

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

    Great video and example.
    Why not using enum for this case ?

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

      Check my video on enums

    • @3453wer
      @3453wer 11 หลายเดือนก่อน

      @@mattpocockuk checked your vid about enums, so again - why dont just use enum for this case? cause enum with specified values transpiles to a simple obj as you had in your video

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

    Brilliant. Instant follow

  • @mananabanana
    @mananabanana ปีที่แล้ว +8

    "as const or how to implement a real enum in typescript" 😂

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

    4:05 me knowing new ts magic

  • @leesasuki
    @leesasuki 9 หลายเดือนก่อน

    thank you, you are a life saver!

  • @LetrixAR
    @LetrixAR ปีที่แล้ว +2

    In this case, why not use enums?

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

      Because, if you read the comments here, using Enums is bad for reasons most don't understand or are not impacted by in actuality. This hacky, non-intuitive solutions to a very basic problem is somehow superior, because... Well. It isn't. Glad this video doesn't disappoint, because Matt is such a massive tool. Simply look up his "Why you shouldn't use Enums" and waste minutes of your life watching a man glorify magic variables via transitive property instead of seeing Enums as what they are.

  • @christopheradolphe
    @christopheradolphe 8 หลายเดือนก่อน

    Awesome tip here. Thank you @mattpocockuk for sharing this.

  • @prashantjoshi6703
    @prashantjoshi6703 ปีที่แล้ว +2

    But what benefit it adds in comparison to string enums?🥺

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

      Wondering the same lol

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

    this is beautiful

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

    Just wow. Thank you.

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

    Another trick is `as const` objects somewhat work with built-in methods while almost not losing all type info:
    ```typescript
    const ROUTES = {
    home: "/",
    admin: "/admin",
    users: "/users"
    } as const;
    // sadly not a tuple of literals, merely an array of literal type union
    const routeValues = Object.values(ROUTES).map((value) => value);
    export type IRoute = (typeof routeValues)[number];
    export function validateRouteValue(inputValue: unknown): inputValue is IRoute {
    // have to coerse type there because typescript is iffy with `Array.includes()`
    // when it's array of string literals
    return routeValues.includes(inputValue as IRoute);
    }
    export function doSomethingFromValue(inputValue: IRoute): void {
    switch (inputValue) {
    case "/":
    case "/admin":
    case "/users": {
    break;
    }
    default: {
    throw new Error(`Invalid value "${inputValue satisfies never}"`)
    }
    }
    }
    ```
    Achieves the same result but you also get a validation function which acts as a type predicate.
    The `doSomethingFromValue()` also shows how literal type unions can be paired with `satisfies` keyword to achieve exhaustive switch cases.

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

      You can use ts-reset to fix that Array.includes issue.

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

    Made me subscribe. Thank you very much. 👍

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

    I love your videos. Very insightful, fun, and straight to the point

  • @kmylodarkstar2253
    @kmylodarkstar2253 3 หลายเดือนก่อน

    Hi Matt, I'm wondering if this prettify option could/should be better or not:
    export type ValueOf = Prettify;
    type Prettify = {
    [K in keyof T]: T[K];
    } & {};

  • @Daniel-the_one
    @Daniel-the_one 10 หลายเดือนก่อน

    How about routes with matching variables like '/users/:id' that match /users/3 ?

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

    That's brilliant!

  • @zerosandones7547
    @zerosandones7547 3 หลายเดือนก่อน

    is there a shorthand for this syntax (typeof variable)[keyof typeof variable]? just curious because it's this is going to be used a lot in the code base.

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

    Question : But when compiled, the 'as const' Object won't be frozen to JS i guess. So, if it's for heap memory optimization it is better to freeze the object a long side 'as const', isn't it ?

  • @lorenzorev
    @lorenzorev 9 หลายเดือนก่อน

    Normally I would an enum in this case like "enum routes" and avoid declaring the type. What do you think?

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

    “const x as const” just feels weird to write 😂

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

    And this is because, I am assuming from the pop-up, enums should not be used?

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

    Hey Matt, I've come across a pattern that I think deserves a shorthand:
    type X = { a: string } | { b : number } // Non discriminated union
    const x : X = { a: "hello"}
    const a = !!x && 'a' in x ? x.a : undefined // works fine, but is somewhat verbose.
    const a = x?.a // errors out because 'a' doesn't exist on type { b: number}
    Is there a simpler way of picking x.a?

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

      Search for "ExclusifyUnion", there's a good stack overflow answer with an explanation

  • @mrvaibh0
    @mrvaibh0 4 หลายเดือนก่อน

    I'm getting kinda imposter syndrome, please explain if we really use such tricky advanced concepts in coding, or is it okay if I'm using simple intermediate level code to get my stuff done, without engaging in fancy stuff like this. Btw, amazing video 🔥🔥!!

    • @Yogarine
      @Yogarine 4 หลายเดือนก่อน +1

      Like everything: It really depends. If you’re not a library developer but a consumer of libraries, and you’re able to develop comfortably without leaving much bugs in the code then you’re good.
      If you _do_ often encounter bugs _OR_ if you want to continue growing as a programmer (which I assume is what you’d want) it’s wise to learn these concepts so you’re prepared in the less common cases where you run into them, or so you have a broader background to make better decisions.

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

    The most underrated in TypeScript is *YOU* haha just kidding you can get tell you are respected by the way everyone else are referring to the wizard 🎉🎉🎉🎉

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

    'as const' is also nice cause it saves you from having to do Object.freeze over and over.

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

    this video is amazing!

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

    I guess your example is similiar to the usage of enum (?). are there any other example besides that?

  • @heddshot87
    @heddshot87 11 หลายเดือนก่อน

    4:05