TypeScript Tutotial For Beginners

Поділитися
Вставка
  • Опубліковано 19 гру 2024

КОМЕНТАРІ • 36

  • @snoudev
    @snoudev Рік тому +6

    I've been struggling to find a typescript for a week on youtube and today I watched your video and was really amazed at how easy you explain it. This is the best tutorial ever, thank you very much. 😉

  • @HtetWaiYan-ov4ew
    @HtetWaiYan-ov4ew Рік тому +1

    The best typescript crash course I have ever seen. Thanks Tim

  • @octomammoth6156
    @octomammoth6156 Рік тому +1

    Thanks Tim. The fact this video still only has 17k views is a testament to how under-appreciated TS really is

  • @w1-w2-w3
    @w1-w2-w3 Рік тому +8

    This video is short and sweet. I was surprise by a lot of similarity between C# and typescript. Pretty cool!

  • @cavemutt
    @cavemutt 10 місяців тому

    Great intro, I don't know why I've avoided learning TypeScript, it's awesome. Thanks!

  • @jeverydk
    @jeverydk Рік тому +5

    At the 2.30 mark he pastes this:
    {
    "compilerOptions": {
    "target": "es5",
    "module": "CommonJS",
    "strict": true,
    "outDir": "dist",
    "skipLibCheck": true
    },
    "include": ["src/**/*.ts"]
    }
    For my fellow VS code users, check out the extention "Pretty TS errors".
    It makes error more read- and understandable.

    • @jeklo3713
      @jeklo3713 Рік тому

      Why he needs to paste that 😅

  • @the_ehiane
    @the_ehiane Рік тому +1

    I’m going to give typescript a try because of this video!

  • @paulthomas1052
    @paulthomas1052 Рік тому +1

    Thanks - very useful intro to TypeScript with great examples.

  • @jma42
    @jma42 Рік тому +8

    if you're used to python type hinting then typescript will surely be a breeze~ enjoying it rn
    on a side note tho, I highly recommend you use node version manager, this will prevent you from installing unnecessary stuff that comes with defaults on node installation and make it easier to switch different versions

  • @garrettsmith315
    @garrettsmith315 8 місяців тому

    I just finished some JavaScript courses and now might take on TS. Kinda seems worth the lift, if anything else to have another project under my belt

  • @BuildOnAWS
    @BuildOnAWS Рік тому +2

    Great tutorial!

  • @mexico4915
    @mexico4915 Рік тому +1

    Thank you nice tutorial

  • @Salah-YT
    @Salah-YT Рік тому +1

    thank u so much

  • @khantsithu4383
    @khantsithu4383 Рік тому

    Waiting for exactly this

  • @lastspoil5547
    @lastspoil5547 4 місяці тому +1

    Is it necessary to watch a 4 hour typescript tutorial for frontend devs? TBH, I don't memorize any syntax and I'm using AI to write alot of my code. I focus on APIs and functionality and I can always refer to projects if I forget something?

  • @alexanderslater4021
    @alexanderslater4021 Рік тому +2

    Just in case anyone else on Windows was having this error - VS code does not allow you to execute the script using the tsc command.
    You need to change the execution policy by opening PowerShell as adminsistrator and pasting:
    "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"

  • @NguyenTrung-yn8tr
    @NguyenTrung-yn8tr Рік тому

    hi Tim, what’s app you use to screen your computer ?

  • @jjophoven
    @jjophoven Рік тому +3

    is there any cases where it gets dumb?

  • @azy3929
    @azy3929 Рік тому

    Perfect timings

  • @kvelez
    @kvelez 5 місяців тому

    {
    "compilerOptions": {
    "target": "ESNext", // target version of javascript
    "module": "CommonJS", // module type
    "outDir": "./dist", // output directory
    "strict": true, // enable all strict type checking
    "forceConsistentCasingInFileNames": true // force consistent casing in file names
    },
    "include": [
    "src/**/*.ts" // include all ts files in src directory
    ],
    "exclude": [
    "node_modules" // exclude node_modules
    ]
    }

  • @alaluddin9005
    @alaluddin9005 Рік тому +2

    Nice 👍👍👍

  • @AnupamChauhan-w7e
    @AnupamChauhan-w7e Рік тому

    thanks tim

  • @alexanderkomanov4151
    @alexanderkomanov4151 Рік тому

    Amazing!

  • @techme6053
    @techme6053 Рік тому

    Pls teach data structures and make one video on syntax of machine learning models

  • @user-rc8ud9rp8n
    @user-rc8ud9rp8n Рік тому

    Good tutorials

  • @thokozaniphilanizondi3318
    @thokozaniphilanizondi3318 4 місяці тому

    Hello Tim may you please provide text based notes as you did with your Python Tutorials, your 30 minute video turned into a whole day video, it's hard for me to follow, I need reference note for practice.

  • @Neceros
    @Neceros Рік тому

    Might I suggest bootstrap Studio for making HTML side of your projects

  • @DrErrday
    @DrErrday Рік тому

    When taking efficient notes on this it seems to be all over the place. Like lets make a whole mini project with it or full script of the examples.

  • @TheRandom-ShortsGuy
    @TheRandom-ShortsGuy 5 місяців тому

    why is no one talking about the fact that he called himself a dog in 11:55/31:41

  • @filmyguyyt
    @filmyguyyt Рік тому

    Tutotial wow

  • @rickharold7884
    @rickharold7884 Рік тому

    cool

  • @andrewtsegaye7330
    @andrewtsegaye7330 Рік тому +2

    The first guy to comment

  • @avertry9529
    @avertry9529 Рік тому

    Thanks but if you have 100 animals to find out if it swims or barks, plus 98 other checks, just have a custom function in each to return said unique value. I know your teaching TS over functional logic, but it made my brain hurt... lol